Run ID:122420
提交时间:2025-06-19 18:32:16
#include<bits/stdc++.h> using namespace std; int main(){ int i=1; int max=0; while(max<1000){ max+=i; i++; } cout<<i; return 0; }