switch

switch

package base;

public class Demo7 {
  public static void main(String[] args) {
      String str="中国";
      switch (str){
          case "中国":
              System.out.println("中国");
              break;
          default:
              System.out.println("未知");
      }
  }
}

 

posted @ 2021-10-06 10:44  clown-lan  阅读(40)  评论(0)    收藏  举报