标题:求大神给写个程序设计框图
只看楼主
小白请教大神
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2016-6-27
 问题点数:0 回复次数:0 
求大神给写个程序设计框图
#include<stdio.h>
int main()
{
int upper=0,lower=0,digit=0,space=0,other=0,i=0;           char *p,s[20];
 printf("input string: ");      //输出所指定的一行信息
 while((s[i]=getchar())!='\n')i++;
 p=&s[0];
 while(*p!='\n')
 {if(('A'<=*p)&&(*p<='Z'))
    ++upper;
  else if(('a'<=*p)&&(*p<='z'))
 ++lower;
  else if(*p==' ')
 ++space;
  else if((*p<='9')&&(*p>='0'))
 ++digit;
  else
 ++other;
  p++;
 }
 printf("upper case:%d lower case:%d",upper,lower);
 printf("      space:%d digit:%d      other:%d\n",space,digit,other);
 return 0;
}
输入一行文字,找出其中大写字母,小写字母,空格,数字以及其他字符各有多少,这是题目
搜索更多相关主题的帖子: 程序设计 include 信息 
2016-06-27 18:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-466422-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.122437 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved