首页 > 编程 > Java > 正文

HDU 2003 JAVA

2019-11-06 07:23:33
字体:
来源:转载
供稿:网友

PRoblem Description 求实数的绝对值。

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)); } }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表