java学校笔记三元运算符和switch

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package 学习内容;
/*package java01;

import java.util.Scanner;

public class Class10 {

public static void main(String[] args) {

//三元运算符 ?:
int x = 9;
/* int y = 6;
int max = x>y?x:y;
System.out.println(max);
Scanner scan = new Scanner(System.in);

int c = scan.nextInt();
c = x % 2==0?'t':'f';
System.out.println((char)c);
}

}
//switch break; default;
/*
switc注意事项
1.可以直接放数字
2.一种情况只能出现一次

*/

版权声明: 本网站所有文章除特别声明外,著作权归作者所有。转载请注明出处!

-------- 本文结束 感谢阅读 --------