Input 输入数据有多组,每组占一行,每行包含一个实数。
Output 对于每组输入数据,输出它的绝对值,要求每组数据输出一行,结果保留两位小数。
Sample Input 123 -234.00
Sample Output 123.00 234.00
import java.util.*;class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); while(sc.hasNext()){ //double x = sc.nextDobule(); double x = sc.nextDouble(); if(x<0){x=0-x;} System.out.println(String.format("%.2f", x)); } }}新闻热点
疑难解答