HackerRank初級篇之Grading Students
阿新 • • 發佈:2018-12-24
題目說明:
題目解讀:
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; }