Run ID:93091
提交时间:2024-10-09 19:36:22
#include<iostream> using namespace std; int main(){ int i=0,h=0; while(i<101){ h=h+i; ++i; } cout<<h; return 0; }