Run ID:137503
提交时间:2025-11-18 15:36:46
#include <iostream> using namespace std; int main(){ int a=0,i=1; while (i<=100){ a+=i; i++; } cout<< a ; return 0; }