Advertisements
Advertisements
Question
Two friends decide who gets the last slice of a cake by flipping a coin five times. The first person to win three flips wins the cake. An input of 1 means player 1 wins a flip, and a 2 means player 2 wins a flip. Design an algorithm to determine who takes the cake.
Solution
Set player1 = 0
Set player2 = 0
FOR each flip from 1 to 5
INPUT result
IF result is 1 THEN
INCREMENT p1
ELSE IF result is 2 THEN
INCREMENT p2
IF p1 is 3 THEN
PRINT "Player 1 wins the cake."
EXIT the algorithm
ELSE IF p2 is 3 THEN
PRINT "Player 2 wins the cake."
EXIT the algorithm
APPEARS IN
RELATED QUESTIONS
Which of the following activities is algorithmic in nature?
Which of the following activities is not algorithmic in nature?
Ensuring the input-output relation is ______
Define an algorithm.
Distinguish between an algorithm and a process.
Specify a function to find the minimum of two numbers.
How is the state represented in algorithms?
Suppose you are collecting money for something. You need ₹ 200 in all. You ask your parents, uncles, and aunts as well as grandparents. Different people may give either ₹ 10, ₹ 20, or even ₹ 50. You will collect till the total becomes 200. Write the algorithm.
Write an algorithm to find the greatest among two different numbers entered by the user.