李怀政


私信TA

用户名:lhz2937739768

访问量:14992

签 名:

撸起袖子加油干

等  级
排  名 157
经  验 7179
参赛次数 2
文章发表 120
年  龄 19
在职情况 学生
学  校 长江大学
专  业 电气工程及其自动化

  自我简介:

TA的其他文章

解题思路:
用f()分段;


参考代码:

#include<iostream>

using namespace std;

#include <iomanip>                                               //用来输出小数位数

int main()

{

    float x,y;

    cin>>x;

    if(x<1)

    cout<<fixed<<setprecision(2)<<x<<endl;

    else if(x>=1&&x<10)

    cout<<fixed<<setprecision(2)<<2*x-1<<endl;

    else 

    cout<<fixed<<setprecision(2)<<3*x-11<<endl;

    return 0;

}


 

0.0分

2 人评分

  评论区

  • «
  • »