Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95895 贾雨泽 06输出日期 C++ Compile Error 0 MS 0 KB 160 2024-11-02 14:33:05

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d-%d-%d",c,b,a); return 0;


Run Info:

Main.cc: In function 'int main()':
Main.cc:9:13: error: expected '}' at end of input
     return 0;
             ^
Main.cc:6:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d-%d-%d",&a,&b,&c);
                               ^