Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1969 莫业祁 11整数的除法 C++ Accepted 0 MS 268 KB 236 2023-12-02 18:31:23

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; if(a%b!=0){ c=a%b; cout<<a/b<<" "<<c; } else{ cout<<a/b<<" "<<c; } return 0; }