Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion C++/08_cppBeginners.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down