解题:打印数字2
2023-07-18 13:34:28
发布于:广东
62阅读
0回复
0点赞
空降坐标:CP002942
请看代码
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m;
cin>>n>>m;
for(int i=n;i<=m;i++)
{
if(i%2!=0)
{
cout<<i<<endl;
}
}
return 0;
}
这里空空如也
有帮助,赞一个