求绝对值

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
#include <cstdio>
#include <cmath>
#define PI 3.1415927
using namespace std;
 
int main()
{
    double a;
    while(~scanf("%lf", &a))
    {
        printf("%.2f\n", fabs(a));
    }
     
    return 0;
}

  

posted @   青衫客36  阅读(93)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示