acm 2003 java做法
求绝对值
Problem Description
求实数的绝对值。
Input
输入数据有多组,每组占一行,每行包含一个实数。
Output
对于每组输入数据,输出它的绝对值,要求每组数据输出一行,结果保留两位小数。
Sample Input
123
-234.00
Sample Output
123.00
import java.text.DecimalFormat; import java.util.*; public class Main { public static void main(String[] args) { Scanner in= new Scanner(System.in); DecimalFormat gd = new DecimalFormat("0.00"); while(in.hasNextDouble()){ double n= in.nextDouble(); System.out.println(gd.format(Math.abs(n))) ; } } }