Created
November 8, 2013 14:31
-
-
Save JAChapmanII/7371800 to your computer and use it in GitHub Desktop.
stardate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string movie = "The last one"; | |
if(date < 300) | |
movie = "The penultimate one"; | |
if(date < 200) | |
movie = "The 2nd to last"; | |
if(date < 100) | |
movie = "The first one"; | |
cout << movie << endl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment