Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95483 | 徐齐力 | A+B 输入输出练习I | C++ | Compile Error | 0 MS | 0 KB | 120 | 2024-10-27 19:52:19 |
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d\n", a + b); return 0;
Main.cc: In function 'int main()': Main.cc:7:13: error: expected '}' at end of input return 0; ^ Main.cc:5:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d", &a, &b); ^