好几天没发帖了,直接上程序
- /*
- 目的:
- 1、定义函数并调用函数,判断两个数是否相同
- 2、定义函数,比较三个数,获取较大数
- 步凑:
- 1、创建主函数和两个功能函数,主函数为main,功能函数为data(参数不同)
- 2、主函数调用功能函数,输出判断值
- */
- class Demo_11
- {
- public static void main(String[] args)
- {
- System.out.println(data(6,6));//调用V1
- System.out.println(data(9,8,14));//调用V2
- }
-
- public static boolean data(int a,int b)//V1
- {
- return (a==b)?true:false;//判断
- }
- public static int data(int a,int b,int c)//V2
- {
- return (a>b)?((a>c)?a:c):((b>c)?b:c);//比较
- /*
- a>b--------true--------a>c-----true-----a
- | |
- | -----false----c
- |
- --------false-------b>c-----true-----b
- |
- 三元运算符嵌套 -----false----c
- */
- }
- }
复制代码
|
|