gpt4 book ai didi

java - 方法返回不正确的值?

转载 作者:行者123 更新时间:2023-12-01 22:03:39 25 4
gpt4 key购买 nike

只需编写一个简单的程序,要求用户输入圆形、矩形或三角形。然后它会要求他们提供适当的形状测量值,然后使用正确的方法来计算该形状的面积。
然而,只有矩形方法才能生成正确的答案。
无论输入什么,circle 方法始终生成 0.0,triangle 方法不会乘以 0.5,而是仅返回底 * 高度。

进行了一些建议的更改,但仍然遇到相同的问题。这是完整的代码。

import java.util.Scanner;

public class Area{
public static void main(String[] args){
Scanner myScanner = new Scanner(System.in);

String shape = "";
boolean notAcceptable = true;

do {
System.out.print("What kind of shape? ");
shape = myScanner.next();
if(shape.equals("circle") || shape.equals("triangle") || shape.equals("rectangle")){
notAcceptable= false;
}else{
System.out.println("ERROR: Please input 'circle','rectangle' or 'triangle'.");
}
}while(notAcceptable);

double radius = 0.0;
double base = 0.0;
double height = 0.0;
boolean acceptable = false;
boolean acceptable1 = false;
boolean acceptable2 = false;

if(shape.equals("circle")){
System.out.print("Enter the radius of the circle: ");

while( !acceptable ){
//check if the input is a double.
if (myScanner.hasNextDouble()){
radius = myScanner.nextDouble();
acceptable = true;
break;
}
else{
System.out.println("ERROR: Input must be a double");
System.out.print("Enter the radius of the circle ");
myScanner.next();
}
}

}else{
System.out.print("Enter the height: ");
while( !acceptable1 ){
//check if the input is a double.
if (myScanner.hasNextDouble()){
height = myScanner.nextDouble();
acceptable = true;
break;
}
else{
System.out.println("ERROR: Input must be a double");
System.out.print("Enter the height: ");
myScanner.next();
}
}

System.out.print("Enter the length of the base: ");
while( !acceptable2 ){
//check if the input is a double.
if (myScanner.hasNextDouble()){
base = myScanner.nextDouble();
acceptable = true;
break;
}
else{
System.out.println("ERROR: Input must be a double");
System.out.print("Enter the length of the base: ");
myScanner.next();
}
}
}

if(shape=="circle"){
circleArea(radius);
}else if (shape=="triangle"){
triangleArea(base,height);
}else{
rectangleArea(base,height);
}


}//bracket that closes main method

public static void circleArea(double r){
double areaC= 3.14*r*r;
System.out.println("The area of your circle is "+areaC);
}

public static void rectangleArea(double b1, double h1 ){
double areaR= b1*h1;
System.out.println("The area of your rectangle is "+areaR);
}

public static void triangleArea(double b2, double h2){
double areaT = 0.5*b2*h2;
System.out.println("The area of your triangle is "+areaT);
}


}//bracket that closes class

最佳答案

请记住,在 Java 中比较字符串时,需要使用equals方法。通过使用 ==,您正在执行 reference comparison .

试试这个:

if(shape.equals("circle")) {
circleArea(radius);
}else if (shape.equals("triangle")) {
triangleArea(base,height);
} else {
rectangleArea(base,height);
}

或者,为了防止空值并使其不区分大小写,大多数开发人员都会这样做:

if("circle".equalsIgnoreCase(shape) {
circleArea(radius);
} else if ("triangle".equalsIgnoreCase(shape)) {
triangleArea(base,height);
} else {
rectangleArea(base,height);
}

因为您使用的是 ==,所以您总是会遇到 else 情况,即计算矩形。

正如其他人提到的,您的计算中也可能存在错误。

关于java - 方法返回不正确的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33224719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com