码迷,mamicode.com
首页 > 其他好文 > 详细

编写一个程序,打印输入中各个字符出现频度的直方图

时间:2016-06-07 11:14:01      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:include   return   直方图   程序   

    当中程序练习。输出C直方图

#include <stdio.h>
main()
{
   int a[30];
   int i,j,c;
   j = i = 0;
   for (i = 0; i < 30; i++){
        a[i] = 0;
   }
   while ((c = getchar()) != ‘#‘){
        if (c > ‘0‘ && c<= ‘30‘)
            ++a[c - ‘0‘];
        }
    for (i = 0 ;i < 30; i++){
        if (a[i] != 0){
        printf("\n%d",i);
        }
        for(j = 0; j < a[i];j++){
            putchar(‘*‘);
      }
        putchar(‘\n‘);
    }
    return 0;
}


本文出自 “小罗” 博客,请务必保留此出处http://xiaoluoge.blog.51cto.com/9141967/1786826

编写一个程序,打印输入中各个字符出现频度的直方图

标签:include   return   直方图   程序   

原文地址:http://xiaoluoge.blog.51cto.com/9141967/1786826

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!