模拟题。。。。。
主要c++中浮点型abs在cmath头文件中,其他abs在cstdlib中。。。。
控制小数点位数 #include<iomanip> cout<<setsiosflags(ios::fixed)<<setprecision(n)<<mmmm;
#include<iostream>
#include<cmath>
#include<cstdlib>
#include<iomanip>
using namespace std;
/*
Each case occupies a line containing six positive integers: P, T, G1, G2, G3, and GJ
*/
int max(int a,int b){
if(a>b)return a;
return b;
}
int main()
{
int p,t,g1,g2,g3,gj;
double g;
while(cin>>p>>t>>g1>>g2>>g3>>gj)
{
if(abs(g1-g2)<=t)g=(g1+g2)/2.0;
else
if(abs(g1-g3)<=t&&abs(g2-g3)<=t)g=max(g1,max(g2,g3));
else
if(abs(g1-g3)<=t)g=(g3+g1)/2.0;
else
if(abs(g2-g3)<=t)g=(g3+g2)/2.0;
else
g=gj;
cout<<setiosflags(ios::fixed)<<setprecision(1)<<g<<endl;
}
return 0;
}

本文提供了一个使用C++进行程序设计的例子,演示了如何处理输入数据并进行条件判断及数学运算,包括如何使用cmath库中的abs函数进行绝对值计算,并展示了如何控制输出的小数点精度。
338

被折叠的 条评论
为什么被折叠?



