Skip to content

Instantly share code, notes, and snippets.

@itsjohncs
Created October 22, 2012 07:28
Show Gist options
  • Save itsjohncs/3930116 to your computer and use it in GitHub Desktop.
Save itsjohncs/3930116 to your computer and use it in GitHub Desktop.
Classroom Session 4 - Fruit Example
#include <iostream>
using namespace std;
int main() {
string fruit;
cout << "Please enter a fruit: ";
cin >> fruit;
while (!(fruit == "apple" || fruit == "orange" || fruit == "pineapple")) {
cout << "That's not a fruit. Try again: ";
cin >> fruit;
}
cout << "I love " << fruit << "s!" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment