Run ID:122419
提交时间:2025-06-19 18:31:30
#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; }