Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90656 冯俊淞 03七巧板 C++ Compile Error 0 MS 0 KB 134 2024-09-16 11:46:39

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double f,c,s; cin>>f; cin>>c; s=f*c; cout<<s;3. return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:9:5: error: expected ';' before 'return'
     return 0;
     ^
Main.cc:9:13: warning: statement has no effect [-Wunused-value]
     return 0;
             ^