Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109557 李朋秦 11整数的除法 C++ Accepted 1 MS 200 KB 143 2025-02-09 14:59:01

Tests(10/10):


Code:

#include<cstdio> //scanf()\printf() int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d %d",(a/b),(a%b)); return 0; }