问题标题: 酷町堂:哪错了

0
0
已解决
贾浩程
贾浩程
资深守护
资深守护
#include<iostream>
using namespace std;
int main()
{
    int a,s,i=1;
    while(i>1000){
        s+=i;
        i++;


    }
    cout<<s;
    return 0;
}

 


0
已采纳
郑凝溪
郑凝溪
初级光能
初级光能

核心:
 int i=0,x=0;
 while(x<1001)
 {
  i++;
  x+=i;
 }
 cout<<i;

0
0
薛新奥
薛新奥
新手光能
新手光能

    while(s<=1000){
        i++;
        s=s+i; 
    }
    cout<<i;

我要回答