Ada Programming Assignment
Ada Programming Assignment
Write an Ada program that will play a game of Rock, Paper, Scissors with the user until
either the user or the computer has won 3 rounds.
2. use a random number generator to generate the computer's move using the attributes of
the user-defined type move.
3. keep a record of the moves made by each player (user and computer), who won each
round, the number of wins by each, and the winner of the series. Keep a record does not
mean that you need to use the record data type, it mean to show what the moves are.... You
can do this AS THE ROUNDS are played.
4. Your program needs to introduce itself to the user providing the rules of the game; tell
how long the game will last, prompt the user for a move.
5. Your program needs the standard heading and descriptions and comments.
6. Your program may use: arrays, subprograms, and other features of the language.