Run ID:5508
提交时间:2024-11-23 19:38:09
#include<iostream> using namespace std; int main(){ int i=1,s=0; while(s<1000){ s+=i; i++; } cout<<i; return 0; }