Problem C: 统计不及格人数

来源:互联网 发布:5轴激光切割编程软件 编辑:程序博客网 时间:2024/04/30 02:37


Time Limit: 1 Sec  Memory Limit:128 MB
Submit: 553  Solved: 432
[Submit][Status][Web Board]

Description

设一维数组存放了n(<100)个学生的成绩,编写函数求不及格的人数
部分代码已给定如下,只需要提交缺失的代码。

#include <iostream>
using namespace std;
int main()
{
    float score[100];
    int i,num=0,n;
    int failcnt(float score[],int n);
    cin>>n;
    for(i=0; i<n; i++)
    {
        cin>>score[i];
    }
    num=failcnt(score,n);
    cout<<num<<endl;
    return 0;
}

Input

n和n个学生的成绩

Output

不及格的人数

Sample Input

1090 85 50 45 70 76 92 69 83 89

Sample Output

2

HINT

[Submit][Status][Web Board]
0 0
原创粉丝点击