hdu 2003 求绝对值
Posted wz-archer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2003 求绝对值相关的知识,希望对你有一定的参考价值。
Problem Description
求实数的绝对值
Input
输入数据有多组,每组占一行,每行包含一个实数。
Output
对于每组输入数据,输出它的绝对值,要求每组数据输出一行,结果保留两位小数。
Sample Input
123
-234.00
Sample Output
123.00
234.00
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; const double inf=1e20; const int maxn=2e5+10; const int mod=1e9+7; int main(){ double n; while(scanf("%lf",&n)!=EOF){ if(n<0)n=-n; printf("%.2lf ",n); } return 0; }
以上是关于hdu 2003 求绝对值的主要内容,如果未能解决你的问题,请参考以下文章