程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> HDU 1029 Ignatius and the Princess IV

HDU 1029 Ignatius and the Princess IV

編輯:關於C語言

給N個數字, N為奇數, 輸出出現次數大於 N / 2 的數  1 #include <stdio.h>
 2 #include <stdlib.h>
 3
 4 int main()
 5 {
 6     int ans, num, count, n;
 7     while (scanf("%d", &n) != EOF)
 8     {
 9         count = 0;
10         for (int i=1; i<=n; i++)
11         {
12             scanf("%d", &ans);
13             if (count == 0)
14             {
15                 num = ans;
16                 count ++;
17             }
18             else if (ans == num)count++;
19             else count--;
20         }
21         printf("%d\n", num);
22     }
23 }
24

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved