阅读下面的代码片段public static int add(int a,int b) { return a + b;} 下列选项中,可以在main()方法中调用add()方法的是()
A: intnum=add(0,0);
B: intnum=add(1,2);
C: intnum=add(true,flase);
D: intnum=add("1","2");
A: intnum=add(0,0);
B: intnum=add(1,2);
C: intnum=add(true,flase);
D: intnum=add("1","2");
举一反三
- 请阅读下面的代码片段[br][/br]publicstaticintadd(inta,intb){[br][/br]returna+b;[br][/br]}[br][/br]下列选项中,可以在main()方法中成功调用add()方法的是() A: intnum=add(1.0,2.0); B: intnum=add(5,6); C: intnum=add(true,flase); D: intnum=add("1","2");
- 阅读下面的代码片段 public static int add(int a,int b) { return a + b; } 下列选项中,可以在main()方法中调用add()方法的是()
- 请阅读下面的代码片段 public static int add(int a,int b) { return a + b; } 下列选项中,可以在main()方法中成功调用add()方法的是
- 以下程序运行结果是 public class Test { public static void main(String[] args) { int a=1,b[]={2}; add(a); add(b); System.out.println(a+","+b[0]); } static int add(int x){ x++; return x; } static void add(int[] x){ x[0]++; } }
- public class test1 { public static int add(int a, int b) { return a+b; } public static double add(double a, double b) { return a+b; } ________________ ___________________ { ________________ ___________________ } public static void main(String[] args) { System.out.println("调用add方法:"+add(2.1,3.4,4.5)); } }