public class Demo{
public static void main(String[] args)throws IOException{
String s = new String("");
int[] a={0,0};
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.print("输入两个int型的数(以一个空格隔开):");
s = br.readLine();
Scanner scan = new Scanner(s);
for(int i=0;i<2;i++){
a[i]=scan.nextInt();
}
System.out.print(max(a[0],a[1]));
}
public static int max(int a, int b){
int big;
if(a>b){
big = a;
}else{
big = b;
}
return big;
}
}作者: 张昶 时间: 2013-3-23 11:14
4_2中的代码的那个方法的返回值没有符合要求题目的返回值的类型是char类型,而你的是string类型。作者: 徐鸿燕 时间: 2013-3-23 11:32