杭电2024(C语言合法标识符)
3 12ajf fi8x_a ff ai_2
no yesno
import java.util.*; class Main{ public static void main(String args[]){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); sc.nextLine(); while(n-->0 ){ String str=sc.nextLine(); if((str.charAt(0)>='a'&&str.charAt(0)<='z')||(str.charAt(0)>='A'&&str.charAt(0)<='Z')||(str.charAt(0)=='_')){ int k=0; for(int i=1;i<str.length();i++){ if((str.charAt(i)>='a'&&str.charAt(i)<='z')||(str.charAt(i)>='A'&&str.charAt(i)<='Z')||(str.charAt(i)>='0'&&str.charAt(i)<='9')||(str.charAt(i)=='_')) k++; } if(k==(str.length()-1)){ System.out.println("yes"); }else{ System.out.println("no"); } }else{ System.out.println("no"); } } } }
注意:为了不然输入数字后面的换行被装进字符串,有这种错误的做法:
Scanner sc1=new Scanner(System.in); Scanner sc2=new Scanner(System.in); while(sc1.hasNext()){ int n=sc1.nextInt(); while(n-->0 ){ String str=sc2.nextLine();
........
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。