Canadian Computing Competition: 2011 Stage 1, Junior #1
Canada Cosmos Control has received a report of another incident. They believe that an alien has illegally entered our space. A person who witnessed the appearance of the alien has come forward to describe the alien's appearance. It is your role within the CCC to determine which alien has arrived. There are only 3 alien species that we are aware of, described below:
- TroyMartian, who has at least 3 antenna and at most 4 eyes;
- VladSaturnian, who has at most 6 antenna and at least 2 eyes;
- GraemeMercurian, who has at most 2 antenna and at most 3 eyes.
Input Specification
The user will be prompted to enter two numbers. First, the user will be prompted to enter the number of antenna that the witness claimed to have seen on the alien. Second, the user will be prompted to enter the number of eyes seen on the alien.
Output Specification
The output will be the list of aliens who match the possible description given by the witness. If no aliens match the description, there is no output.
Sample Input 1
4
5
Output for Sample Input 1
VladSaturnian
Sample Input 2
2
3
Output for Sample Input 2
VladSaturnian
GraemeMercurian
Sample Input 3
8
6
Output for Sample Input 3
Comments
uh
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
"The user will be prompted to enter two numbers."
Minor point: there is no prompting required for this question. Can we remove references to prompting? This is a popular question for my younger students, and the super-diligent ones prompt the user, much to their dismay...
This comment is hidden due to too much negative feedback. Click here to view it.
The order of output has to be always TroyMartian then VladSaturnian then GraemeMercurian, but it is not stated
This comment is hidden due to too much negative feedback. Click here to view it.
How do I make the computer read multiple if statements and then print every statement that is true, because right now the computer just prints the first one that's true.
Just use multiple if's so don't use elif statements. Hope this helps.
yeah