李秋勉 中级守护 题目链接: 酷町堂:1528 #include<iostream> #include<iomanip> using namespace std; int main( ) { double x; cin>>x; if(x>3) { cout<<setprecision(1)<<fixed<<x*2.3; } else if(x=3) { cout<<setprecision(1)<<fixed<<6; } else { cout<<setprecision(1)<<fixed<<x*1.7; } return 0; }