Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149099 张锦程 13求1╳2+2╳3+3╳4+...+10╳11的和 C++ Compile Error 0 MS 0 KB 200 2026-03-07 14:34:46

Tests(0/0):


Code:

#include<iostream> uisng namespace std; int main(){ int sum=0; for(int i=1;i<=10;i++){ for(int j=2;j<=11;j++){ sum+=i*j; } }cout<<sum; return 0; }


Run Info:

Main.cc:2:1: error: 'uisng' does not name a type
 uisng namespace std;
 ^
Main.cc: In function 'int main()':
Main.cc:9:6: error: 'cout' was not declared in this scope
     }cout<