运行这段代码,你将能够从键盘输入一串字符串,并分别统计其中的大写字母、小写字母和数字字符的个数。
{if( i % 5==0 )putchar('\n'); printf(" 字母%c : %d ",'A'+i,count2[i]);} }
public static void main(String[] args) {System.out.println("请输入一串字符串");Scanner s=new Scanner(System.in);String string=s.nextLine();int numberCount=0;int upperCaseCount=0;int lowerCaseCount=0;for(int i=0;i<string.length();i++){char c=string.charAt(i);if(Character...
='\n') //循环输入字符,直到输入回车{if(c>='a' && c<='z' || c>='A' && c<='Z')letters++;else if(c==' ')space++;else if(c>='0' && c<='9')digit++; else others++;}printf("统计:字母=%d 空格=%d 数字=%d 其它=%d\n",letters,space,digit,others);...
System.out.println("您输入的字符串中的数字有:"+numbers); System.out.println("您输入的字符串中的空格有:"+spaces); System.out.println("您输入的字符串中的其他字符有:"+others);} public static void main(String args[]){ &#...
public static void main(String[] args) { int letter=0,digit=0,space=0;Scanner sc=new Scanner(System.in);System.out.println("请输入一行字符");String str=sc.nextLine();char[] ch=str.toCharArray();for(int i=0;i<ch.length;i++){ if(Character.isDigit(ch[i])){ digit++;}...
百度试题 题目编写程序,从键盘输入一串字符,统计该字符串中大写元音英文字母(‘A'、'E'、'I'、'O'、'U')的个数。 样例输入:BUCEA 样例输出:3 样例输入:bucea 样例输出:0 相关知识点: 试题来源: 解析 0 --- 2 反馈 收藏
package org.xhome.leon.test;import java.io.*;public class FileUtil { FileReader fr;BufferedReader br;FileWriter fw;BufferedWriter bw;String source = "";public int upCaseNum = 0;public int lowerCaseNum = 0;public int numerNum = 0;public int otherNum = 0;public void initReaders...
C语言编程 从键盘输入一个字符串,分别统计其中大写字母、小写字母及其... printf("大写字母的个数为:%d 小写字母的个数为:%d 空格个数为:%d \\n",countd,countx,countk);printf("数字个数为:%d 其他字符个数为%d\\n",counts,countq);} 如何用c语言实现统计字符个数 ...
{ int i=0,count1[26]={0},count2[26]={0};while( ch[i++] ){if(ch[i]>='a'&&ch[i]<='z') count1[ch[i]-'a']++;else if(ch[i]>='A'&&ch[i]<='Z') count2[ch[i]-'A']++;} for(i=0;i<26;i++){if( i % 5==0 )putchar('\n'); printf(" 字...