Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113721 毛靖平 15加到第几项 C++ Accepted 0 MS 264 KB 179 2025-03-16 13:52:13

Tests(1/1):


Code:

#include<iostream> // cin\cout\endl using namespace std; int main(){ int a=0,c=0; while(a<=1000){ c++; a=a+c; } cout<<c; return 0; }