一个半径R的圆,圆内取一点作圆心,做半径为r的圆,求两圆相交的概率。 我就分了r < R, r > R && r < 2*R, r > 2*R这几种情况考虑,然后画图分析了一下, public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int R = in.nextInt(); int r = in.nextInt(); double ...