package cn.bdqn.com; import java.util.Scanner; public class Jisaunqi { int num1; int num2; int jieguo; public void show(){ Scanner input=new Scanner(System.in); String fuhao1=input.next(); char fuhao2=fuhao1.charAt(0); switch(fuhao2){ case '+': jiegu…
1.下面中哪两个可以在A的子类中使用:( ) class A { protected int method1 (int a, int b) { return 0; } } A. public int method 1 (int a, int b) { return 0; } B. private int method1 (int a, int b) { return 0; } C. private int method1 (int a, long b) { return 0; } D. publ…