华师一附中OI组
标题:
求s=1+1/2+1/3+***1/10
[打印本页]
作者:
admin
时间:
2018-7-8 16:56
标题:
求s=1+1/2+1/3+***1/10
注意变量的类型
作者:
郑子川
时间:
2018-7-14 10:25
#include <iostream>
using namespace std;
int x;
float y;
int main()
{
for(x=1;x<=10;x++)
{
y=y+1.0/x;
}
cout<<y;
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2