Forum: C++ Sep 27th, 2007 |
| Replies: 4 Views: 562 Re: tenis match pseudo It's broken down the specific set so that if you entered 15 15 2 the output would be 15 30 and then you continue input until a player has won the set. Once the set if finished it outputs game. |
Forum: C++ Sep 27th, 2007 |
| Replies: 4 Views: 562 Re: tenis match pseudo Sorry about that, here is what I have managed so far.
Prompt user for 3 values
int score_1, score_2, player;
player = 1,2;
if (winner = 1) then
score_1 = score_1 +15 |
Forum: C++ Sep 27th, 2007 |
| Replies: 4 Views: 562 tenis match pseudo Hi I am completely new to the programming and I got 0/10 on my last algorithm in pseudo code. I need to write an algorithm using pseudo code to score a tennis match. The algorithm takes two scores... |