码迷,mamicode.com
首页 > 其他好文 > 详细

编程题#3:最高的分数

时间:2017-10-10 20:31:47      阅读:734      评论:0      收藏:0      [点我收藏+]

标签:max   mes   names   考试   using   cin   name   nbsp   out   

描述

孙老师讲授的《计算概论》这门课期中考试刚刚结束,他想知道考试中取得的最高分数。因为人数比较多,他觉得这件事情交给计算机来做比较方便。你能帮孙老师解决这个问题吗?

 

输入

输入两行,第一行为整数n(1 <= n < 100),表示参加这次考试的人数.第二行是这n个学生的成绩,相邻两个数之间用单个空格隔开。所有成绩均为0到100之间的整数。

 

输出

输出一个整数,即最高的成绩。

#include <iostream>
using namespace std;
int main() {
    int n, max = 0, score;
    cin >> n;
    while (n--) {
        cin >> score;
        if (score > max)
            max = score;
    }
    cout << max << endl;
    return 0;
} 

 

编程题#3:最高的分数

标签:max   mes   names   考试   using   cin   name   nbsp   out   

原文地址:http://www.cnblogs.com/Zhz0306/p/7647293.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!