您的位置:首页 > 其它

Problem C: 统计不及格人数

2016-03-18 21:20 302 查看



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

10
90 85 50 45 70 76 92 69 83 89

Sample Output

2

HINT

[Submit][Status][Web
Board]
한국어
中文
فارسی English
ไทย

Anything about the Problems, Please Contact Admin:admin

All Copyright Reserved 2010-2014
HUSTOJ TEAM

GPL2.0 2003-2014
HUSTOJ Project TEAM
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: