杭电oj 1001

include

using namespace std;
int main()
{
int n, sum, i;
while(cin >> n )
{
sum=0;
for(i=1;i<=n;i++){
sum+=i;
}
cout << sum << endl;
cout << endl;
}
return 0;
}
注意审题,题目要求输出后空一行。教训,反复错题找不到需再次审题。
循环输入
c++ while(cin>>a[i]){}
c while(scanf("%d",&a)!=EOF){}

上一篇:1001 害死人不偿命的(3n+1)猜想


下一篇:shell之运用sed将其值存到变量