----------------解决方案--------------------------------------------------------
给你个参考吧
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char ch;
int cout1=0,cout2=0;
int cout3=0,cout4=0;
printf("input the character ch:");
ch=getchar();
while(ch!='\n')
{
if (ch>='0'&&ch<='9')
cout1++;
else if (ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
cout2++;
else if (ch==' ')
cout3++;
else
cout4++;
ch=getchar();
}
printf("其中数字的个数:%d\n",cout1);
printf("其中字母的个数:%d\n",cout2);
printf("其中空格的个数:%d\n",cout3);
printf("其它的个数:%d\n",cout4);
return 0;
}
----------------解决方案--------------------------------------------------------
我想问一下
stdlib.h是什么头文件呢?我试了一下,去掉也可以运行
----------------解决方案--------------------------------------------------------
此题很熟悉
----------------解决方案--------------------------------------------------------
恩 可以去掉的。我刚写了一个exit()函数,没有来得及把头文件去掉,谢谢了哦。
----------------解决方案--------------------------------------------------------
呵呵,我也正好开始学C,现在碰到个类似这样的题目:“要求用户输入一个字符串,然后统计字符串中空格的数量(要求使用指针来遍历数组)”
我不明白的是如何去定义这个数组,如果用malloc定义的话怎么做呢?
我写了个,但是有错误的,不大明白~
#include <stdio.h>
#include <stdlib.h>
#define MAX 50
void main()
{
int x,i=0,n=0;
char ch,*p,a[MAX];
p=a;
printf("请输入一个字符串:");
for (x=0;x<5;x++)
{
ch=getchar();
a[x]=ch;
}
do{
x++;
if (*(p+n-1)=' ')
i++;
}while (*(p+n-1)!='/n');
printf("该字符串中空格的数量为:%d",i);
}
----------------解决方案--------------------------------------------------------
你的好像很麻烦似的,这个吧。
#include <stdio.h>
#include <stdlib.h>
#define MAX 50
void main()
{
int i=0;
char *p,a[MAX];
p=a;
printf("请输入一个字符串:");
p=(char *)malloc(MAX*sizeof(char));
gets(p);
while(*p!='\0')
{
if (*p==' ')
i++;
p++;
}
printf("该字符串中空格的数量为:%d\n",i);
}
----------------解决方案--------------------------------------------------------
#include<stdio.h>
main()
{char c;
int letter=0,space=0,digit=0,other=0;
printf(“请输入一行字符:\n”);
while((c=getchar())!=’\n’);
{if (c>=’a’&&c<=’z’||x>=’A&&c<=’Z’)
letter++;
else if (c= =’’)
space++;
else if(c>=’0’&&c<=’9’)
digit++;
else
other++;
}
----------------解决方案--------------------------------------------------------
呵呵。。。和我那个差不多!
----------------解决方案--------------------------------------------------------
HOHO,谢谢“pinglideyu”
因为不知道gets()和puts()函数搞得很复杂,现在明白了~
----------------解决方案--------------------------------------------------------