diff --git a/C++/08_cppBeginners.cpp b/C++/08_cppBeginners.cpp index 8c121f5..b0cad3b 100644 --- a/C++/08_cppBeginners.cpp +++ b/C++/08_cppBeginners.cpp @@ -7,8 +7,10 @@ int main() int a = 98; int b = 76; - if(a > b){ // Tests if a is greater than b. + if(a > b) { // Tests if a is greater than b. cout << "Bucky is AWESOME!!!!" << endl; + } else { // Tests if a is smaller or equal to b + cout << "You are AWESOME!!!!" << endl; } return 0;