Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90794 贾雨泽 02买铅笔 C++ Compile Error 0 MS 0 KB 201 2024-09-16 15:31:56

Tests(0/0):


Code:

#include<iostream> using namespace std; int main() { long long a,b,c,d; cin>>a; cin>>b; cin>>c; cin>>d cout<<(c*10+d)/(a*10+b)<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:10:5: error: expected ';' before 'cout'
     cout<<(c*10+d)/(a*10+b)<