用Java语句,将变量a,b和c中最大的数值赋值给变量d

2020-06-29 教育 309阅读
import java.util.Scanner;
public class test {
         
    public static void main(String[] args) {
     int a,b,c,d;
     Scanner sc = new Scanner(System.in);
     System.out.println("Please input three numbers:");
     a = sc.nextInt();
     b = sc.nextInt();
     c = sc.nextInt();
     d = maxofthree(a, b, c);
     System.out.println("d = " + d);
     sc.close();
    }
     
    public static int maxofthree(int a,int b,int c){
     int max;
     if(a>b){
     max=a;
     }
     else{
     max=b;
     }
     if(max     return max;
    }
     
}
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com