There are N egg baskets and the number of eggs in each
basket is a known quantity. Two players take turns to remove
these eggs from the baskets. On each turn, a player must
remove at least one egg, and may remove any number of eggs
provided they all belong to the same basket. The player
picking the last egg(s) wins the game. If you are allowed to
decide who is going to start first, what mathematical
function would you use to decide so that you end up on the
winning side?
Upload a C program to demonstrate the behaviour of the game.
Answer Posted / venu
condition: First person should win
The logic is:
1.if n== odd
First person will remove all eggs from the basket.
next until empty baskets ==1, First person will just do
what ever the second person do. Once last basket comes he
will remove all eggs.
2.if n== even
First person will take out all eggs except one, 2nd
person forced to loose 1 chance as he will remove that egg.
Now next step is just do the (1)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is gets() function?
What is the meaning of c in c language?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
How can a number be converted to a string?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What does c value mean?
What is fflush() function?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Why is python slower than c?
Is exit(status) truly equivalent to returning the same status from main?
What is the purpose of ftell?
What is the purpose of sprintf() function?
Explain the difference between call by value and call by reference in c language?