标签:sys system can public problem read scan rip input
求实数的绝对值。
输入数据有多组,每组占一行,每行包含一个实数。
对于每组输入数据,输出它的绝对值,要求每组数据输出一行,结果保留两位小数。
123
-234.00
123.00
234.00
import java.util.*;
class Main
{
public static void main(String[] args)
{
Scanner read=new Scanner(System.in);
double x;
while(read.hasNext()){
x=read.nextDouble();
System.out.format("%.2f",Math.abs(x)).println();
}
}
}
标签:sys system can public problem read scan rip input
原文地址:https://www.cnblogs.com/Titordong/p/9674112.html