3 条题解
-
2
12229赵子萱 (12229赵子萱) LV 6 @ 2021-10-29 16:17:34
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
cout<<x/y<<' '<<x%y<<endl;
return 0;
} -
12021-12-04 20:42:34@
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
cout<<x/y<<' '<<x%y<<endl;
return 0;
} -
02025-07-15 11:32:20@
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a/b<<" "<<a%b;
return 0;
}
- 1
信息
- ID
- 1687
- 难度
- 1
- 分类
- (无)
- 标签
- 递交数
- 307
- 已通过
- 211
- 通过率
- 69%
- 被复制
- 3
- 上传者