Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
11909 徐一喆 《C语言程序设计》江宝钏主编-习题3-6-商和余 C++ Accepted 1 MS 728 KB 131 2021-05-18 13:04:43

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int a,b; int main() { cin>>a>>b; cout<<a/b<<" "<<a%b<<endl; return 0; }