Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87739 小徐老师 输出不及格学生的成绩 Python3 Compile Error 0 MS 0 KB 472 2024-08-12 10:17:23

Tests(0/0):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int a[5][5]; for(int i = 0; i < 3; ++i) for(int j = 0; j < 4; ++j) cin >> a[i][j]; for(int i = 0; i < 3; ++i) for(int j = 0; j < 4; ++j) if(a[i][j] < 60) { for(int k = 0; k < 4; ++k) cout << a[i][k] << ' '; cout << endl; break; } return 0; }


Run Info:

  File "Main.py", line 3
    using namespace std;
                  ^
SyntaxError: invalid syntax