muppirgautham / FindMaximum

Find the maximum of a list of numbers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Find the maximum of a list of numbers

Aim:

To write a program to find the maximum of a list of numbers.

Equipment’s required:

  1. Hardware – PCs
  2. Anaconda – Python 3.7 Installation / Moodle-Code Runner

Algorithm:

  1. Get the list of marks as input
  2. Use the sort() function or max() function or use the for loop to find the maximum mark.
  3. Return the maximum value

Program:

i) # To find the maximum of marks using the list method sort.

Program to mark the maximum of marks using the list method sort
Developed by: M.GAUTHAM
RegisterNumber: 21000182
'''
def max_marks(marks):
    marks.sort()
    max_mark=marks[-1]
    return max_mark


ii) # To find the maximum marks using the list method max().

Program to find the maximum marks using the list method max().
Developed by:M.GAUTHAM
RegisterNumber: 21000182
'''
def max_marks(marks):
    max_mark=max(marks)
    return max_mark


iii) # To find the maximum marks without using builtin functions.

Program to the maximum marks without using builtin functions.
Developed by: M.GAUTHAM
RegisterNumber: 21000182
'''
def max_marks(list1):
    max_mark=0
    for i in list1:
        if i>max_mark:
            max_mark=i
    return max_mark



Sample Input and Output

output

Output:

output output output

Result:

Thus the program to find the maximum of given numbers from the list is written and verified using python programming.

About

Find the maximum of a list of numbers