Run ID:93601
提交时间:2024-10-18 14:04:45
#include <iostream> using namespace std; int main(){ int i,x=0; for(i=1;i<=5;i++){ x+=i*i; } cout<<x<<endl; }