8 条题解
- 1
信息
- ID
- 595
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 3
- 标签
- 递交数
- 319
- 已通过
- 168
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b,c;
cin >> a >> b >> c;
c = c - (b *0.9) - (a * 0.9);
cout << c;
return 0;
}
简单A
#include <bits/stdc++.h>
using namespace std;
int main(){
cout<<5.5;
}
5行
过辣!(脑残人士的欢呼)
long long x,y,n;
cin>>x>>y>>n;
cout<<n-0.9*(x+y);
#include <iostream>//hetao3097453
#include <iomanip>
using namespace std;
int main()
{
double x,y,n,z;
cin >> x >> y >> n;
z = x + y;
cout << fixed << setprecision(1) << n - z * 0.9;
return 0;
}