switch留个爪,之后还需要再研究下
Posted 空谈误国-实干兴邦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了switch留个爪,之后还需要再研究下相关的知识,希望对你有一定的参考价值。
1 public class SwitchDemo 2 { 3 public static void main (String [] args) 4 { 5 for(int i = 0; i < 10; i++) 6 { 7 char c = (char) (Math.random() * 26 + ‘a‘); 8 System.out.print (c + ": "); 9 switch (c) 10 { 11 case ‘a‘: 12 case ‘e‘: 13 case ‘i‘: 14 case ‘o‘: 15 case ‘u‘: 16 System.out.println("vowel"); 17 break; 18 case ‘y‘: 19 case ‘w‘: 20 System.out.println("Sometimes a vowel"); 21 break; 22 default: 23 System.out.println("consonant");} 24 } 25 } 26 }
以上是关于switch留个爪,之后还需要再研究下的主要内容,如果未能解决你的问题,请参考以下文章