Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4749 | 陆若涵 | 06整数除法 | C++ | Compile Error | 0 MS | 0 KB | 152 | 2024-09-14 20:57:57 |
#include <iostream> using namespace std; int main(){ //float a; //a=1.23456; //printf("%.2f",a); float a,b; cin>>a>>b; printf("%.5f",a/b);
Main.cc: In function 'int main()': Main.cc:9:20: error: expected '}' at end of input printf("%.5f",a/b); ^