0
0
已采纳
王子健
初级天翼
初级天翼
{ double x,y; cin>>x; if(x>3) y=x*2.3; else if(x==3) y=6; else y=1.7*x; printf("%.1f",y); return 0;
}
望采纳
0
0
0
0
0
杨舰中
高级守护
高级守护
#include<iostream>
#include<cstdio>
//x>3,y=x * 2.3; x=3,y=6; x<3,y=x * 1.7
using namespace std;
int main()
{
double x,y;
cin>>x;
if (x>3)
y=x * 2.3;
else if (x==3)
y=6;
else if (x<3)
y=x * 1.7;
printf("%.1f",y);
return 0;
}
杨舰中在2018-02-07 14:30:22追加了内容
望采纳
0