3 条题解
- 1
信息
- ID
- 695
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 1
- 标签
- 递交数
- 104
- 已通过
- 79
- 上传者
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 1; i <= n; i += 2) if (i % 10 != 9) cout << i << endl;
return 0;
}
AC,放心食用👀️
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
for (int i = 1; i <= n; i += 2)if (i % 10 != 9) cout << i << "\n";
}