#include <stdio.h> int main() { int c, i, nwhite, nother; int ndigit[10]; nwhite = nother = 0; for (i = 0; i < 10; ++i) { ndigit[i] = 0; } while ((c = getchar()) != EOF) { if (c >= '0' && c <= '9') { ++ndigit[c - '0']; } else if (c == ' ' || c == '\t' || c == '\n') { ++nwhite; } else { ++nother; } } printf("Cyfry ="); for (i = 0; i < 10; ++i) { printf(" %d", ndigit[i]); } printf(", biale znaki = %d, inne = %d\n", nwhite, nother); return 0; }
Napisz program tworzący histogram długości słów wejściowych. Łatwiej rysuje się histogrm z wykresami poziomymi; pionowa orientacja jest bardziej wymagająca.