张晗弈


私信TA

用户名:lsnu0002

访问量:2047

签 名:

等  级
排  名 2429
经  验 2313
参赛次数 0
文章发表 8
年  龄 10
在职情况 学生
学  校 乐山实验小学
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:保留3位浮点小数

参考代码:

#include<bits/stdc++.h>

using namespace std;

int main()

{

    float x;

    cin>>x;

    if(x<5)

        cout<<fixed<<setprecision(3)<<-x+2.5;

    else if(x<10)

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

    else if(x<20)

        cout<<fixed<<setprecision(3)<<x/2-1.5;

    return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »