李怀政


私信TA

用户名:lhz2937739768

访问量:14933

签 名:

撸起袖子加油干

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

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<iostream>

using namespace std;

#include<cmath>

#include <iomanip>

int main()

{

    float x;

    cin>>x;

    if(x<0)

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

    else if(x>=0&&x<2)

    cout<<fixed<<setprecision(2)<<sqrt(x+1)<<endl;

    else if(x>=2&&x<4)

    cout<<fixed<<setprecision(2)<<pow(x+2,5)<<endl;

    else

    cout<<fixed<<setprecision(2)<<2*x+5<<endl;

    return 0;

}


 

0.0分

5 人评分

  评论区

  • «
  • »