Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101763 | 李泽宜 | 11整数的除法 | C++ | Runtime Error | 0 MS | 256 KB | 204 | 2024-12-17 20:26:28 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cout<<a<<b; int quotient=a/b; int remainder=a%b; cout<<quotient<<" "<<remainder<<endl; return 0; }
Runtime Error:Floating point exception