単純プログラミング(14)は、2つの整数の最大値を判断して返す方法を定義し、自分の方法を呼び出して正しいかどうかをテストすることができる.


メソッドを定義して、2つの整数の最大値を判断して返し、自分のメソッドを呼び出して正しいかどうかをテストします.
(一)
public class  p16 {
	public static int max(int x,int y) {
	int max;
		if(x>y){
			max=x;
		}
		else{
			max=y;
		}
		return max;
	}
	public static void main(String[] args) {
	  int max= max(25, 18);// 
	   System.out.println(max); //  
	   
	  //   System.out.println(max(25,18));
	}
	
}
	

(二)
public class p16 {
public static void max(int a ,int b ){
		if (a>b) {
			System.out.println(a);
			
		}else {
			System.out.println(b);
		}
}

public static void main(String[] args) {
	
	max(25, 18);
	
}
}
                                   
               
(三)
public class  p16 {
	public static int max(int x,int y) {
		
		if (x>y) {
			return x;
			
		}else{
			return y;
		}
	}
	public static void main(String[] args) {
		 int max= max(4, 445);
		   System.out.println(max);
		   
		   //   System.out.println(max(25,18));
		}
	   }

                                                                                                       
(四)
public class  p16 {
	public static int max(int x,int y) {
		
		return x>y?x:y;
	}
	public static void main(String[] args) {
		 int max= max(4, 445);
		   System.out.println(max);
		   
		   //   System.out.println(max(25,18));
		}
	   }