本文目录一览:
用c语言如何实现,统计从键盘输入数字的个数
可以用一个for循环,将上限设置大一点,在循环里加入if判断跳出循环的条件,每次循环计数+1或者等全部数字输入完成之后,直接取字符串长度
c语言统计大小写字母 数字个数
#include
stdio.h
#include
stdlib.h
#define
N
100
void
func3()
{
char
str[N];
int
i,lower=0,upper=0,digit=0,space=0;
long
others=0;
printf("Input
a
string:");
gets(str);
for(i=0;str[i]!='\0';i++)
{
if(str[i]='a'
str[i]='z')
lower++;
/*统计小写英文字母*/
else
if(str[i]='A'
str[i]='Z')
upper++;
/*统计大写英文字母*/
else
if(str[i]='0'
str[i]='9')
digit++;
/*统计字符串*/
else
if(str[i]=='
')
space++;
else
others++;
/*统计其他字母*/
}
printf("lower
English
character:%d\n",lower);
printf("upper
English
character:%d\n",upper);
printf("digit
character:%ld\n",digit);
printf("space:%d\n",space);
printf("other
character:
%ld\n",others);
return
0;
}
int
main()
{
while(1)
{
func3();
printf("\n");
system("pause");
}
return
0;
}
扩展资料:
程序实现思路分析
统计大小写字母、数字的个数,首先要判断出字符是属于哪一种,然后增加计数。
1、判断
小写字母的范围为:'a'~'z'
大写字母的范围为:'A'~'Z'
数字的范围为:'0'~'9'
2、声明三个int变量并赋值初值为0
lower——统计小写英文字母
upper——统计大写英文字母
digit——统计数字
c语言输入一行字符串,如何统计其中的字母和数字的个数
要统计英文字母,空格,数字和其他字符的个数,代码如下:
#includelt;stdio.hgt;
#includelt;stdlib.hgt;
int main()
{
char c;
int letters=0;
int space=0;
int digit=0;
int other=0;
printf("请输入一行字符:gt;");
while((c=getchar())!='\n')
{
if((cgt;='a'clt;='z')||(cgt;='A'clt;='Z'))
{
letters++;
}
else if(''==c)
{
space++;
}
else if(cgt;='0'clt;='9')
{
digit++;
}
else
{
other++;
}
}
printf("字母的个数:gt;%d\n空格的个数:gt;%d\
\n数字的个数:gt;%d\n其他字符的个数:gt;%d\n",\
letters,space,digit,other);
system("pause");
return 0;
}
扩展资料:
include用法:
#include命令预处理命令的一种,预处理命令可以将别的源代码内容插入到所指定的位置;可以标识出只有在特定条件下才会被编译的某一段程序代码;可以定义类似标识符功能的宏,在编译时,预处理器会用别的文本取代该宏。
插入头文件的内容
#include命令告诉预处理器将指定头文件的内容插入到预处理器命令的相应位置。有两种方式可以指定插入头文件:
1、#includelt;文件名gt;
2、#include"文件名"
如果需要包含标准库头文件或者实现版本所提供的头文件,应该使用第一种格式。如下例所示:
#includelt;math.hgt;//一些数学函数的原型,以及相关的类型和宏
如果需要包含针对程序所开发的源文件,则应该使用第二种格式。
采用#include命令所插入的文件,通常文件扩展名是.h,文件包括函数原型、宏定义和类型定义。只要使用#include命令,这些定义就可被任何源文件使用。如下例所示:
#include"myproject.h"//用在当前项目中的函数原型、类型定义和宏
你可以在#include命令中使用宏。如果使用宏,该宏的取代结果必须确保生成正确的#include命令。例1展示了这样的#include命令。
【例1】在#include命令中的宏
#ifdef _DEBUG_
#define MY_HEADER"myProject_dbg.h"
#else
#define MY_HEADER"myProject.h"
#endif
#include MY_HEADER
当上述程序代码进入预处理时,如果_DEBUG_宏已被定义,那么预处理器会插入myProject_dbg.h的内容;如果还没定义,则插入myProject.h的内容。