提交时间:2024-03-16 12:33:42
运行 ID: 43518
#include<iostream> using namespace std; int main() { int a,b; a=10; b=3; cout<<a/b<<" "<<a%b; return 0; }