1. 程式人生 > >HackerRank初級篇之Grading Students

HackerRank初級篇之Grading Students

題目說明:


題目解讀:

38分以下不變,以上每5分為一個等級,進行四捨五入

示例程式碼:

// GradingStudents.cpp: 定義控制檯應用程式的入口點。
//

#include "stdafx.h"
#include <windows.h>
#include <iostream>
using namespace std;

//by zhaocl

int main()
{
    int n;
    cin >> n;
    int grates;

    while( n-- )
    {
        cin >> grates;

        if( grates >= 38 )
        {
            if( grates % 5 >= 3 )
                grates += ( 5 - grates % 5 );
        }

        cout << grates << endl;
    }

    system( "pause" );
    return 0;
}