hdoj2003

 #include<iostream>
#include<cmath>
using namespace std;
int main()
{
    double x;
    cout.precision(2);
    while( cin >> x)
    {
           cout  << fixed << fabs(x) << endl;
           }
    system("pause");
    }



 


   

你可能感兴趣的:(hdoj2003)