Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102032 | 秦浩然 | 11整数的除法 | C++ | Wrong Answer | 0 MS | 268 KB | 160 | 2024-12-21 11:32:06 |
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b; if(a/b){ cout<<c<<" "<<d; } return 0; }
------Input------
86 33
------Answer-----
2 20
------Your output-----
0 0