cognizance-amrita / hacktoberfest

An initiative to promote Hacktoberfest
MIT License
0 stars 35 forks source link

Grading Students #34

Open ndrohith09 opened 2 years ago

ndrohith09 commented 2 years ago

HackerLand University has the following grading policy:

Examples

Given the initial value of grade for each of Sam's m students, write code to automate the rounding process.

Function Description

Complete the function gradingStudents in the editor below. gradingStudents has the following parameter(s):

Returns

Input Format

The first line contains a single integer, n , the number of students. Each line i of the n subsequent lines contains a single integer,grades[i] .

Constraints

1 <= n <= 60 
0 <= grades[i] <= 100

Sample Input 0

4
73
67
38
33

Sample Output 0

75
67
40
33

Explanation 0

image

Tr1ck-5t3r commented 2 years ago

i would like to solve this using java

IndexPosition commented 2 years ago

I would like to solve this problem using python.

theNamanchauhan commented 2 years ago

I would like to solve it using c++

mohan-warrior commented 2 years ago

I would like to solve this problem using c