gpt4 book ai didi

java - 无法为象限检查程序创建正确的方法

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

我不确定如何将公共(public)静态方法与仅返回字符的 if/else 语句结合使用。该程序应该获取 x,y 并返回坐标位于哪个象限内。 (java菜鸟!)

import javax.swing.JOptionPane;

public class Assignment13 {

public static void main(String[] args) {
String userInputx,
userInputy;
double x, y, answer;

userInputx = JOptionPane.showInputDialog("Please enter your x coordinate.");
x = Double.parseDouble(userInputx);

userInputy = JOptionPane.showInputDialog("Please enter your y coordinate.");
y = Double.parseDouble(userInputy);

answer = MethodQuad.quadrant(x, y);

System.out.println("The coordinates " + x + y + "are located Quadrant " + answer);
}
}

class MethodQuad {

public static double quadrant(double x, double y) {

if (x > 0 && y > 0) {
return System.out.println("1");
} else if (x < 0 && y > 0) {
return System.out.println("2");
} else if (x < 0 && y < 0) {
return System.out.println("3");
} else if (x < 0 && y > 0) {
return System.out.println("4");
} else {
return System.out.println("0");
}
}
}

最佳答案

它的工作方式就像在另一种编程语言中一样。如果写了返回值,则必须返回一些值)

 class MethodQuad {
public static int quadrant(double x, double y)
{

if(x > 0 && y > 0)
return 1;
else if(x < 0 && y > 0)
return 2;
else if(x < 0 && y < 0)
return 3;
else if (x<0 && y >0)
return 4;
else
return 0;
}
}

关于java - 无法为象限检查程序创建正确的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7909276/

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