2 条题解
-
1小小愿望 LV 4 @ 2019-08-15 12:25:31
#include <stdio.h> typedef long long ll; int main() { ll x1, x2; while (scanf("%lld%lld", &x1, &x2) == 2) { printf("%lld\n", x1 + x2); printf("%lld\n", x1 * x2); printf("%lld\n", x1 % x2); } return 0; }
-
02023-08-27 08:19:04@
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long x,y;
cin>>x>>y;
cout<<x+y<<endl;
cout<<x*y<<endl;
cout<<x%y<<endl;
return 0;
}
- 1
信息
- ID
- 1078
- 难度
- 9
- 分类
- (无)
- 标签
- 递交数
- 3389
- 已通过
- 166
- 通过率
- 5%
- 被复制
- 2
- 上传者