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 }
View Code

 

以上是关于switch留个爪,之后还需要再研究下的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin !!操作员使用使代码不清晰

C# switch 表达式 null 大小写

个人的一些基本情况记录

求MATLAB大神留个邮箱,帮忙解决两个简单的问题

Bert文本分类实践

十条jQuery代码片段助力Web开发效率提升