华师一附中OI组
标题:
1-100之间所有奇数的和
[打印本页]
作者:
vc_vitamine
时间:
2018-7-5 19:55
标题:
1-100之间所有奇数的和
求1-100之间所有奇数的和
作者:
JASONZHU
时间:
2018-7-6 23:05
题13.
#include <iostream>
using namespace std;
int i,s;
int main()
{
for(i=1;i<=100;i=i+2)
s=s+i;
cout<<s;
return 0;
}
复制代码
作者:
郑子川
时间:
2018-7-14 10:22
#include <iostream>
using namespace std;
int x,y;
int main()
{
for(x=1;x<=100;x=x+2)
{
y=x+y;
}
cout<<y;
return 0;
}
复制代码
作者:
高歌岭
时间:
2018-7-24 13:12
#include <iostream>
using namespace std;
int i,s;
int main()
{
for(i=1;i<=100;i=i+2)
s=s+i;
cout<<s;
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2