HDU 2003 求绝对值

 1 #include <stdio.h>
 2 #include<math.h> 
 3 int main()
 4 {
 5     double r;
 6     while(scanf("%lf",&r)!=EOF)
 7     printf("%.2lf\n",fabs(r));
 8     return 0;
 9 }
10     

posted on 2012-08-03 17:48  mycapple  阅读(419)  评论(0编辑  收藏  举报

导航