【C語言助教】統計每個月過生日的人數,120個人的,隨機產生這些人的生日的月份。

來源:互聯網
上載者:User
//*********************************************************************************//第6題//統計每個月過生日的人數,120個人的,隨機產生這些人的生日的月份。//*********************************************************************************#include <stdio.h>#include <stdlib.h>void main(){int birth[120];int month[12]={0};int count=1;printf("員工的生日列表:\n");for(int i=0;i<120;i++){birth[i] = rand()%12+1;for(int j=0;j<12;j++){if(birth[i] == j+1){month[j]++;}}printf("%5d",birth[i]);if(count%10==0){printf("\n");}count++;}printf("\n生日統計:\n");for(int k=0;k<12;k++){printf("%2d月份人數:",k+1);printf("%3d\n",month[k]);}}

員工的生日列表:
    6   12   11    5    6    5    7    7   11    9
    6    6    2    4    2   12    8    3    4    1
    4    1    3   10    5   11   10    9    3   12
   12    7   12    7   10    5   12    8    8    7
   12    4    3   10   10    9   10    8    6    5
   12    9   11   10   10    8   12   10    2   11
    5   12    3    7    1   11    5    3    5    5
    3   10    3   10   11    3    7   10   10    9
   10   12    1   11    1    9   11    9   12    5
    1    4    3    8    6   11    3    7   10    6
   10   12    8    7    1    7   10    3    6    7
    6    6    9    5    7   10    6   10   10    1

生日統計:
 1月份人數:  8
 2月份人數:  3
 3月份人數: 12
 4月份人數:  5
 5月份人數: 11
 6月份人數: 11
 7月份人數: 12
 8月份人數:  7
 9月份人數:  8
10月份人數: 20
11月份人數: 10
12月份人數: 13
請按任意鍵繼續. . .

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.