Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107949 | 田珂莹 | 06整数除法 | C++ | Compile Error | 0 MS | 0 KB | 173 | 2025-01-19 09:36:44 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b; double c; cin>>a>>b; c=a*1.0/b; printf("%.5lf",c); return 0;
Main.cc: In function 'int main()': Main.cc:10:14: error: expected '}' at end of input return 0; ^