从键盘上输入一个字符串,试统计出该字符串中所有数字字符的个数。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从键盘上输入一个字符串,试统计出该字符串中所有数字字符的个数。相关的知识,希望对你有一定的参考价值。

参考技术A C语言版,没有说语言,要其他语言再说。
#include<stdio.h>
int main()

char t[500],*p=t;
unsigned int c=0;
printf("输入一行字串:");
scanf("%s",t);
while(*p)
if(*p>='0' && *p<='9') c++;
p++;

printf("共有%u个数字",c);
return 0;
参考技术B 遍历一下撒

JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。

package Code503;

import java.util.Scanner;
/*
题目:
统计键盘输入的一个字符串中的数字,字母大小写和其他。
*/

public class CodeStringCount {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入一个字符串");
String input = scanner.next();
int countUpper = 0;
int countLower = 0;
int countNumber= 0;
int countOther= 0;
//将字符串转为字符数组
char[] array = input.toCharArray();
for (int i = 0; i < array.length; i++) {
char ch = array[i];
if (‘A‘<=ch&&ch<=‘Z‘){
countUpper++;
}else if (‘a‘<=ch&&ch<=‘z‘){
countLower++;
}else if (‘0‘<=ch&&ch<=‘9‘){
countNumber++;
}else{
countOther++;
}
}
System.out.println("Lower"+countLower+"Upper"+countUpper+"Number"+countNumber+"Other"+countOther);
}
}
运行代码↓
技术图片

 



以上是关于从键盘上输入一个字符串,试统计出该字符串中所有数字字符的个数。的主要内容,如果未能解决你的问题,请参考以下文章

汇编十道小题

用python从键盘输入一个字符串,统计其中大写小写字母以及数字的个数?

统计不同字符个数。用户从键盘输入一行字符,编写一个程序,统计并输出其中英文字符数字空格和其他字符的个数

c语言 从键盘上任意输入一个字符(字母大小写,数字,控制字符和其他字符)判断所属字符类型,只发

C语言编程题:从键盘输入一串字符,统计其中的数字与字母个数并输出

JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。