Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89501 | 李谨睿 | 02买铅笔 | C++ | Wrong Answer | 1 MS | 272 KB | 164 | 2024-08-25 13:09:50 |
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,f,g; f=0; cin>>a>>b; cin>>c>>d; f=a*10+b; g=c*10+d; cout<<f/g; return 0; }
------Input------
11 93 0 71
------Answer-----
0
------Your output-----
2