下面程序的功能是利用指针统计一个字符串中字母、空格、数字及其他字符的个数,请填空。
#include
main()
{intalpha,space,digit,other;
char*p,s[80];
alpha=space=digit=other=0;
printf("inputstring:\n");
gets(s);
for(p=s;*p!='\0';p++)
if(____)
alpha++;

欢迎免费使用小程序搜题/刷题/查看解析,提升学历,成考自考报名,论文代写、论文查重请加客服微信skr-web

下面程序的功能是利用指针统计一个字符串中字母、空格、数字及其他字符的个数,请填空。
#include
main()
{intalpha,space,digit,other;
char*p,s[80];
alpha=space=digit=other=0;
printf("inputstring:\n");
gets(s);
for(p=s;*p!='\0';p++)
if(____)
alpha++;
elseif(____)
space++;
elseif(____)
digit++;
else
other++;
prinff("pha:%dspace:%ddigit:%dother:%d\n",alpha,space,digit,other);
}

字母包括大写和小写字母。 *p>'A'&&*p<'Z':*p>='a'&&*p<='z' *p==''¦¦*p=='\t' *p>='0'&&*p<='9'

访客
邮箱
网址

通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作


  • 自动写文案
  • 自动写小说
  • 马上扫码让Ai帮你完成工作
通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作

  • 自动写论文
  • 自动写软件
  • 我不是人,但是我比人更聪明,我是强大的Ai
Top