4 条题解
-
1240714zj张逸凡 (张逸fan) LV 8 @ 2024-07-19 22:36:55
#include<iostream>
using namespace std;
int main()
{
long long s,r1,r2;
cin>>r1>>s;
r2=s*2-r1;
cout<<r2;
return 0;
} -
-22021-12-17 16:22:32@
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main()
{
double s,r1;
cin>>r1>>s;
cout<<s*2-r1*1.0;
return 0;
} -
-22021-11-08 20:57:33@
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main()
{
double s,r1;
cin>>r1>>s;
cout<<s*2-r1*1.0;
return 0;
}
平均数*2-r1=r2 -
-22021-10-31 20:27:29@
#include<iostream>
using namespace std;
int main()
{
long s,r1;
cin>>r1>>s;
cout<<s*2-r1;
return 0;
}
- 1
信息
- ID
- 1690
- 难度
- 1
- 分类
- (无)
- 标签
- 递交数
- 269
- 已通过
- 169
- 通过率
- 63%
- 被复制
- 4
- 上传者