Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5512 陆若涵 15加到第几项 C++ Accepted 0 MS 264 KB 127 2024-11-23 19:43:10

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int a=0,b=0; while(a<=1000){ b++; a+=b; } cout<<b; }