一、实验内容
1.实验要求
输入一个字符串,统计大写字母、小写字母、空格、数字和其他字符的个数。(要求用字符数组
代码
#include<stdio.h> #include<conio.h> #define N 100 int main() { char cstr[N]; int i,d=0,x=0,s=0,n=0,o=0; printf("请输入一个字符串 "); gets(cstr); for(i=0;cstr[i]!='
一、实验内容
1.实验要求
输入一个字符串,统计大写字母、小写字母、空格、数字和其他字符的个数。(要求用字符数组
代码
#include<stdio.h> #include<conio.h> #define N 100 int main() { char cstr[N]; int i,d=0,x=0,s=0,n=0,o=0; printf("请输入一个字符串 "); gets(cstr); for(i=0;cstr[i]!='