練習 1-14 編寫一個程序,打印輸入中各個字符出現頻度的直方圖

#include <stdio.h> #define SIZE 128 int main(void) {   int c,i,countch[SIZE],j;   for(i = 0; i < SIZE; i++)      countch[i] = 0;   printf("Please enter a character:\n");   while((c = getchar()) != EOF
相關文章
相關標籤/搜索