Run ID:106084
提交时间:2025-01-15 12:57:53
#include <iostream> using namespace std; int main(){ int s=0; int i=1; while(i<=100) { s = s + i; i++; } cout<<s; return 0; }