好的,所以我编写了大部分程序,可以让我确定两个圆是否重叠.
除了一个问题,我的程序没有任何问题:程序不会接受我为两个中心点之间的距离编写的代码.我可以弄清楚if/else逻辑告诉用户取决于稍后的距离值会发生什么,但我想知道现在有什么问题.Eclipse,我编写的程序,告诉我应该将距离解析为数组,但我已经告诉过你它是一个int.
这是我的代码:
package circles;
import java.util.Scanner;
public class MathCircles {
// variable for the distance between the circles' centers
public static int distance;
// variable for the lengths of the radii combined
public static int radii;
public static void main(String[] args) {
// Get the x-value of the center of circle one
System.out.println("What is the x-coordinate for the center of circle one?");
Scanner keyboard = new Scanner(System.in);
int x1 = keyboard.nextInt();
//Get the y-value of the center of circle …Run Code Online (Sandbox Code Playgroud)