diff --git a/kermit.jpg b/kermit.jpg new file mode 100644 index 0000000..3b07b15 Binary files /dev/null and b/kermit.jpg differ diff --git a/kermit.jpg:Zone.Identifier b/kermit.jpg:Zone.Identifier new file mode 100644 index 0000000..3b70c5e --- /dev/null +++ b/kermit.jpg:Zone.Identifier @@ -0,0 +1,4 @@ +[ZoneTransfer] +ZoneId=3 +ReferrerUrl=https://www.google.com/ +HostUrl=https://i.ytimg.com/vi/5AzT5nQh8bk/hqdefault.jpg diff --git a/main.cpp b/main.cpp index bb63cb8..7fcf579 100644 --- a/main.cpp +++ b/main.cpp @@ -1,4 +1,5 @@ #include +#include using namespace std; int main() @@ -8,24 +9,28 @@ int main() char last initial; cout<<"Hi. What is your first name? " - cin<>last initial; - cout<<"Thanks, "<>age>>endl; + cin>>age; + cout << endl; if( age < 12 ) { cout<<"Hey kid, how do you like school?\n"; } - if( age < 18 ) + else if( age < 18 ){ cout<<"Cool!"endl; cout<<"How's highschool going?\n"; - else( age >= 18 ); + } + else if( age >= 18 ); { cout<<"Pleased to meet you!\n"; } + return 0; }