HDU 2003 求绝对值
Posted zlrrrr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2003 求绝对值相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=2003
Problem Description
求实数的绝对值。
Input
输入数据有多组,每组占一行,每行包含一个实数。
Output
对于每组输入数据,输出它的绝对值,要求每组数据输出一行,结果保留两位小数。
Sample Input
123 -234.00
Sample Output
123.00 234.00
代码:
#include <bits/stdc++.h> using namespace std; int main() { double n; while(cin>>n) { if(n>=0) printf("%.2lf ",n); else printf("%.2lf ",-1*n); } return 0; }
以上是关于HDU 2003 求绝对值的主要内容,如果未能解决你的问题,请参考以下文章