【题目】输入一个字符串,请编程统计其中的字母,数字空格(含制表符),标点符号的个数并输出#include stdio.h #include ctype.h int main(){ int j=0,w=0,k=0,l=0,i=0,a=0; char str1[200];printf("请输入一个长度不超过200的字符串: "); gets(str1); puts(str1); for(i=0;str1[i]!='...
【题目】输入一个字符串,请编程统计其中的字母,数字,空格(含制表符),标点符号的个数并输出#include stdio h #include ctype h int main(){ int j=0,w=0,k=0,1=0,i=0,a=0; char str1[200];printf("请输入一个长度不超过200的字符串 "); gets(str1); puts(str1); for(i=0;str1 [i]!=...
1输入一个字符串,请编程统计其中的字母,数字,空格(含制表符),标点符号的个数并输出#include <stdio.h> #include <ctype.h> int main() { int j=0,w=0,k=0,l=0,i=0,a=0; char str1[200]; printf("请输入一个长度不超过200的字符串:\n"); gets(str1); puts(str1); for(i=0;str1[i...
int j=0,w=0,k=0,l=0,i=0,a=0;char str1[200]="";//字符串要有初始化,否则系统默认赋值,会导致判断错误 printf("请输入一个长度不超过200的字符串:\n");gets(str1);puts(str1);for(i=0;str1[i]!=0;i++)//字符串初始化时,未被赋值的位默认为0,函数检测时会与数字0...
#include <stdio.h> #include <ctype.h> int main() { int j=0,w=0,k=0,l=0,i=0,a=0; char str1[200]; printf("请输入一个长度不超过200的字符串:\n"); gets(str1); puts(str1); for(i=0;str1[i]!='/0';i++) {if(isalpha(str1[i])!=0) j++; else... #include <...