摘要: public static void main(String[] args) { //case穿透现象 char grade = 'C'; switch (grade){ case 'A': System.out.println("优秀"); break; case 'B': System.out. 阅读全文
posted @ 2022-03-24 17:30 花田007 阅读(64) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Scanner scanner = new Scanner(System.in); Double score = scanner.nextDouble(); //if else判断时,一旦其中一个else if语句检测 阅读全文
posted @ 2022-03-24 17:21 花田007 阅读(28) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { //输入多个数字,求和和平均数 Scanner scanner = new Scanner(System.in); double sum = 0; int m = 0; //当输入的不是一个double类型就会结束循环 阅读全文
posted @ 2022-03-24 16:57 花田007 阅读(61) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { //从键盘接收数据 Scanner scanner = new Scanner(System.in); System.out.println("使用nextLine方式接收:"); //判断是否还有输入 if(scan 阅读全文
posted @ 2022-03-24 16:15 花田007 阅读(26) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { // x ? y :z //如果x==true,则结果为y,否则结果为z int score = 50; String type = score < 60 ? "不及格" : "及格"; System.out.prin 阅读全文
posted @ 2022-03-24 14:56 花田007 阅读(7) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { int a = 10; int b = 20; //字符串连接符 System.out.println(""+a+b);//1020 System.out.println(a+b+"");//30} 阅读全文
posted @ 2022-03-24 14:50 花田007 阅读(16) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { //短路运算 int c = 5; boolean d = (c<4)&&(c++<4);//与运算中,当这里的第一个已经是false,后面就不会再次执行了。故c并没有成为6 System.out.println(c) 阅读全文
posted @ 2022-03-24 14:37 花田007 阅读(71) 评论(0) 推荐(0) 编辑