大聪明程序员


私信TA

用户名:dotcpp0707958

访问量:255

签 名:

等  级
排  名 36572
经  验 419
参赛次数 0
文章发表 7
年  龄 0
在职情况 学生
学  校 哔哩哔哩大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

import java.util.Scanner;
class Main {
   public static void main(String[] args) {
       Scanner scanner = new Scanner(System.in);
       while (scanner.hasNext()) {
           String str=scanner.nextLine();
           char [] ch=str.toCharArray();
           boolean str2=false;
         if(ch[0]>='0'&&ch[0]<='9')
         {
             System.out.print("no");
             break;
         }
         else
         {
             for (int i = 0; i < ch.length; i++)
             {
                 if ((ch[i] >= 'a' && ch[i] <= 'z') || (ch[i] >= 'A' && ch[i] <= 'Z') || (ch[i] == '_')||(ch[i]>='0'&&ch[i]<='9'))
                 {
                     str2=true;
                 }
                 else
                 {
                     str2=false;
                     break;
                 }
             }
             if (str2==true)
             {
                 System.out.print("yes");
                 break;
             }
             else if (str2==false)
             {
                 System.out.print("no");
                 break;
             }
         }

       }
   }
}

 

0.0分

0 人评分

  评论区

  • «
  • »