📜  Python程序查找数组中的最大元素

📅  最后修改于: 2022-05-13 01:56:56.744000             🧑  作者: Mango

Python程序查找数组中的最大元素

给定一个数组,找出其中最大的元素。

Input : arr[] = {10, 20, 4}
Output : 20

Input : arr[] = {20, 10, 20, 4, 100}
Output : 100
Python3
# Python3 program to find maximum
# in arr[] of size n 
  
# python function to find maximum
# in arr[] of size n
def largest(arr,n):
  
    # Initialize maximum element
    max = arr[0]
  
    # Traverse array elements from second
    # and compare every element with 
    # current max
    for i in range(1, n):
        if arr[i] > max:
            max = arr[i]
    return max
  
# Driver Code
arr = [10, 324, 45, 90, 9808]
n = len(arr)
Ans = largest(arr,n)
print ("Largest in given array is",Ans)
  
# This code is contributed by Smitha Dinesh Semwal
Please refer complete article on Program to find largest element in an array for more details!