077_带返回值方法练习
作者:互联网
1 package com_01; 2 /* 3 需求: 4 设计一个方法用于打印两个数中的较大值,数据来自于参数 5 6 思路: 7 1.定义一个方法,用于打印两个数字中的较大数,例如getMax() 8 2.使用分支语句分两种情况对两个数字的大小关系进行处理 9 3.根据题设分别设置两种情况下对应的返回结果 10 4.在main()方法中调用定义好的方法并使用变量保存 11 5.在main()方法中调用定义好的方法并直接打印结果 12 */ 13 public class MyMethodDemo02 { 14 public static void main(String[] args) { 15 int result=getMax(10,20); 16 System.out.println(result); 17 } 18 //定义一个方法,用于打印两个数字中的较大数,例如getMax() 19 public static int getMax(int a,int b){ 20 21 22 //使用分支语句分两种情况对两个数字的大小关系进行处理 23 if(a > b){ 24 return a; 25 }else{ 26 return b; 27 } 28 } 29 }
标签:077,打印,int,练习,getMax,返回值,main,方法,public 来源: https://www.cnblogs.com/zhengqiangchen/p/14044844.html