fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int hist[5] = {0};
  6. int n, i, j;
  7.  
  8. while (1) {
  9. printf("値:");
  10. scanf("%d", &n);
  11. if (n < 1 || 5 < n) break;
  12. hist[n-1]++;
  13. }
  14. for (i = 0; i < 5; i++) {
  15. printf("%d=%d:", i+1, hist[i]);
  16. for (j = 0; j < hist[i]; j++) {
  17. printf("%c", ((j+1) % 3) ? '*' : 'x');
  18. }
  19. printf("\n");
  20. }
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0.01s 1680KB
stdin
3
4
3
3
2
2
3
0
stdout
値:値:値:値:値:値:値:値:1=0:
2=2:**
3=4:**x*
4=1:*
5=0: