Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
43650 楼俊毅 《C语言程序设计》江宝钏主编-习题3-6-商和余 C++ Accepted 2 MS 268 KB 117 2022-12-23 19:28:59

Tests(1/1):


Code:

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