所以我正在写一个程序,我要求用户输入一个数字,然后我返回该数字的绝对值。我的程序应该允许+或 - 签名。 (或没有)以及带或不带小数点的数字。
由于我是初学者,我不想使用任何高级方法。
我写了一些东西,我不确定我是否走在正确的轨道上。 您可以看到我想如何计算代码中的绝对值。
我遇到的问题:如何提取字符串中给出的数字并使用该数字来计算abs值?
=============================================== ==========================
import java.util.Scanner;
public class AValue {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter a number:");
String num = input.nextLine();
if (num.matches("[+-][\\d].[\\d]" ) )
//calculation
System.out.println("The absolute value ");
else if (num.matches("[+-][\\d]" ) )
//calculation
System.out.println("The absolute value of " + num + " is ");
else if (num.matches("[\\d]" ) )
//calculation
System.out.println("The absolute value of " + num + " is ");
else if (num.matches("[\\d].[\\d]" ) )
//calculation
System.out.println("The absolute value of " + num + " is ");
else
System.out.println("Invalid number.");
//x = x * x;
//x = sqrt(x);
}
}
答案 0 :(得分:1)
使用此代码
Scanner input = new Scanner(System.in);
double number = input.nextDouble();
System.out.println(Math.abs(number));
答案 1 :(得分:0)
您不必提取任何内容,只需将String
输入转换为Double
并在其上应用Math.Abs
,这是内置的绝对值方法。
(https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html)
检查出来:
Scanner input = new Scanner(System.in);
double num = Double.parseDouble(in.next());
System.out.println(Math.abs(num));