【题目】输入一个字符串,请编程统计其中的字母,数字空格(含制表符),标点符号的个数并输出#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 argc, char *argv[]){ char str[256]; puts("请输入一个长度不超过200的字符串:"); gets(str); int i = 0, alpha = 0, digit = 0, space = 0, spunct = 0; for(;str[i]!='\0';i++) { if(isal...
【题目】输入一个字符串,请编程统计其中的字母,数字,空格(含制表符),标点符号的个数并输出#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]!=...
输入一个字符串,请编程统计其中的字母,数字,空格(含制表符),标点符号的个数并输出#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]...
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++)//字符串初始化时,未被赋值...
#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 <...