文章目录
- AcWing 710. 六个奇数
- AC代码
AcWing 710. 六个奇数
本题链接:AcWing 710. 六个奇数
本博客给出本题截图:
AC代码
代码:
#include <iostream> using namespace std; int main() { int x; cin >> x; if (x % 2 == 1) { cout << x << endl; for (int i = 0; i < 5; i ++, x += 2 ) cout << x + 2 << endl; } else { cout << x + 1 << endl; x += 1; for(int i = 0; i < 5; i ++, x += 2) cout << x+ 2 << endl; } return 0; }