Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1037 | 王彦皓 | 11整数的除法 | C++ | Wrong Answer | 0 MS | 260 KB | 197 | 2023-06-24 15:07:24 |
#include <iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b; if(a%b>0){ c=a/b; d=a%b; cout<<c<<d<<endl; } else{ c=a/b; cout<<c<<endl; } return 0; }
------Input------
51 16
------Answer-----
3 3
------Your output-----
33