私信TA

用户名:gaoxuan

访问量:265

签 名:

等  级
排  名 2676
经  验 2194
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校 南通大学
专  业

  自我简介:

TA的其他文章

c++代码求绝对值
浏览:181

解题思路:

注意事项:

参考代码:

#include<iostream>

#include<cmath>

#include<iomanip>

using namespace std;

int main()

{

    float x;

    while(cin>>x)

    {

        if(x>=0)

        cout<<setiosflags(ios::fixed)<<setprecision(2)<<x<<endl;

        else if(x<0)

        cout<<setiosflags(ios::fixed)<<setprecision(2)<<fabs(x)<<endl;

    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »