鱼C论坛

 找回密码
 立即注册
查看: 2221|回复: 3

请大家帮帮忙,这题目想了很久,百度了还是没一点头绪。

[复制链接]
发表于 2014-6-28 00:28:02 | 显示全部楼层 |阅读模式
1鱼币
本帖最后由 风之残月 于 2014-11-10 10:22 编辑

编写一个用来统计输入的各个数字丶空白符(空格,制表符,换行符)以及所有其他字符出现次数的程序。
把数字放入num[10]
空白符放入blank
以及所有其他的字符a,b,c,%等等放入others.

最佳答案

查看完整内容

1 #include 2 #include 3 int main(int argc, char **argv) 4 { 5 int ch = 0, number = 0, blank = 0, other = 0; 6 printf("Enter a text: "); 7 while((ch = getchar()) != EOF) 8 { 9 if(isdigit(ch)) 10 number++; 11 else if(isspace(ch)) 12 blank++; 13 ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-6-28 00:28:03 | 显示全部楼层
  1 #include <stdio.h>
  2 #include <ctype.h>
  3 int main(int argc, char **argv)
  4 {
  5         int ch = 0, number = 0, blank = 0, other = 0;
  6         printf("Enter a text: ");
  7         while((ch = getchar()) != EOF)
  8         {
  9                 if(isdigit(ch))
10                         number++;
11                 else if(isspace(ch))
12                         blank++;
13                 else
14                         other++;
15         }
16         printf("number: %d\n blank: %d\n other: %d\n", number, blank, other);
17         return 0;
18 }


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-6-28 00:29:13 | 显示全部楼层
分别放入里面,在打印出来。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-6-28 15:01:58 | 显示全部楼层
非常感谢。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 13:30

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表