| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154457 | 蔡皓霆 | 12输出英文字母 | C++ | Compile Error | 0 MS | 0 KB | 290 | 2026-05-30 14:14:37 |
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; int n=a b c d e f g k i j k l m n o p q r s t u v w x y z; int m=Z Y X W V U T S R Q P O N M L K J I K G F E D C B A; { cout << n << m <<endl; } return 0; }
Main.cc: In function 'int main()':
Main.cc:8:9: error: redeclaration of 'int n'
int n=a b c d e f g k i j k l m n o p q r s t u v w x y z;
^
Main.cc:6:9: note: 'int n' previously declared here
int n, m;
^
Main.cc:8:11: error: 'a' was not declared in this scope
int n=a b c d e f g k i j k l m n o p q r s t u v w x y z;
^
Main.cc:9:9: error: redeclaration of 'int m'
int m=Z Y X W V U T S R Q P O N M L K J I K G F E D C B A;
^
Main.cc:6:12: note: 'int m' previously declared here
int n, m;
^
Main.cc:9:11: error: 'Z' was not declared in this scope
int m=Z Y X W V U T S R Q P O N M L K J I K G F E D C B A;
^