Advertisements
Advertisements
प्रश्न
Write a program to create a Stack for storing only odd numbers out of all the numbers entered by the user. Display the content of the Stack along with the largest odd number in the Stack. (Hint. Keep popping out the elements from stack and maintain the largest element retrieved so far in a variable. Repeat till Stack is empty).
टिप्पणी लिखिए
उत्तर
n = int(input("Enter the number of values: "))
stack=[]
for i in range(n):
num = int(input("Enter number : "))
if num%2 != 0:
stack.append(num)
largestNum = stack.pop()
while(len(stack)>0):
num = stack.pop()
if num>largestNum:
largestNum=num
print("The largest number found is: ",largestNum)
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?