杭电2003----求绝对值

1 #include<stdio.h>
2 #include<math.h>
3 int main()
4 {
5     double n;
6     while(~scanf("%lf",&n))
7         printf("%.2lf
",fabs(n));
8     return 0;
9 }
原文地址:https://www.cnblogs.com/qq188380780/p/6038441.html