Advertisements
Advertisements
Question
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).
Short Note
Solution
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
Is there an error in this question or solution?