Skip to content

Instantly share code, notes, and snippets.

@JAChapmanII
Created November 8, 2013 14:31
Show Gist options
  • Save JAChapmanII/7371800 to your computer and use it in GitHub Desktop.
Save JAChapmanII/7371800 to your computer and use it in GitHub Desktop.
stardate
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