| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148321 | 张蔚林 | 06输出日期 | C++ | Compile Error | 0 MS | 0 KB | 158 | 2026-02-11 10:48:23 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d-%d-%d"c,a,b); return 0; }
Main.cc: In function 'int main()':
Main.cc:8:9: error: unable to find string literal operator 'operator""c' with 'const char [9]', 'long unsigned int' arguments
printf("%d-%d-%d"c,a,b);
^
Main.cc:7:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d-%d-%d",&a,&b,&c);
^