7 条题解
- 1
信息
- ID
- 599
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 5
- 标签
- 递交数
- 603
- 已通过
- 224
- 上传者
考察保留一位小数的代码,上代码!
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x,y,z;
double f;
cin >> x >> y >> z;
cout << x+y+z << endl;
f=(x+y+z)/3.0;
printf("%.1f",f);
return 0;
}
日常十六题,嗨害嗨~~~
为什么我用却用不了?
过辣!(脑残人士的欢呼)
double x,y,z;
cin>>x>>y>>z;
cout<<x+y+z<<endl<<fixed<<setprecision(1)<<1.0*(x+y+z)/3;
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int x, y, z;
cin >> x >> y >> z;
cout << x + y + z << endl << fixed << setprecision(1) << (x + y + z) / 3.0;
return 0;
}
#include <bits/stdc++.h>
#include <iomanip>
using namespace std;
int main()
{
double x, y, z;
cin >> x >> y >> z;
int a = x + y + z;
double b = (x + y + z) / 3.0;
cout << a << endl;
cout << fixed << setprecision(1) << b;
return 0;
}
#include <iostream>//hetao3097453
#include <iomanip>
using namespace std;
int main()
{
double x,y,z;
cin >> x >> y >> z;
cout << x + y + z << endl;
cout << fixed << setprecision(1) << (x + y + z) / 3;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
double d;
cin >> a >> b >> c;
d = (a+b+c) / 3.0;
cout << a+b+c << endl;
printf("%.1f",d);
return 0;
}
A