1. 程式人生 > >hdu_problem_2003_求絕對值

hdu_problem_2003_求絕對值

/*
*
*Problem Description
*求實數的絕對值。
*
*
*Input
*輸入資料有多組,每組佔一行,每行包含一個實數。
*
*
*Output
*對於每組輸入資料,輸出它的絕對值,要求每組資料輸出一行,結果保留兩位小數。
*
*
*Sample Input
*123
*-234.00
*
*
*Sample Output
*123.00
*234.00
*
*
*Author
*lcy
*
*
*Source
*C語言程式設計練習(一)
*
*
*Recommend
*JGShining
*
*/
#include<iostream>
using namespace
std; int main() { double n; while (cin >> n) { if (n >= 0) printf("%.2f\n", n); else printf("%.2f\n", -n); } system("pause"); return 0; }