zoukankan      html  css  js  c++  java
  • 年龄与疾病

    总时间限制: 
    1000ms
     
    内存限制: 
    65536kB
    描述

    某医院想统计一下某项疾病的获得与否与年龄是否有关,需要对以前的诊断记录进行整理,按照0-18、19-35、36-60、61以上(含61)四个年龄段统计的患病人数占总患病人数的比例。

    输入
    共2行,第一行为过往病人的数目n(0 < n <= 100),第二行为每个病人患病时的年龄。
    输出
    按照0-18、19-35、36-60、61以上(含61)四个年龄段输出该段患病人数占总患病人数的比例,以百分比的形式输出,精确到小数点后两位。每个年龄段占一行,共四行。
    样例输入
    10
    1 11 21 31 41 51 61 71 81 91
    样例输出
    20.00%
    20.00%
    20.00%
    40.00%

    代碼實現:

     1 #include<cstdio>
     2 int n,a,s[4];
     3 double ans;
     4 int main(){
     5     scanf("%d",&n);
     6     for(int i=1;i<=n;i++){
     7         scanf("%d",&a);
     8         if(a<19) ++s[0];
     9         if(a>18&&a<36) ++s[1];
    10         if(a>35&&a<61) ++s[2];
    11         if(a>60) ++s[3];
    12     }
    13     for(int i=0;i<4;i++)
    14     printf("%.2lf%%
    ",double(s[i])/double(n)*100);
    15     return 0;
    16 }

    。。。

  • 相关阅读:
    浅谈聚类算法(K-means)
    多步法求解微分方程数值解
    本学期微分方程数值解课程总结(matlab代码)
    Stone Game
    Two Sum IV
    Insert into a Binary Search Tree
    Subtree of Another Tree
    Leaf-Similar Trees
    Diameter of Binary Tree
    Counting Bits
  • 原文地址:https://www.cnblogs.com/J-william/p/6155031.html
Copyright © 2011-2022 走看看