/* this is a C style comment. It covers all of the text until the next line */
int main() { int age; cout << "Enter your age => "; cin >> age; /* if (age > 15) { } else if (age > 5) { } else { } */ cout << age }
// ask the user for their age. cout << "Please enter your age -> "; cin >> userAge; // compute the user's status based on age.
numberOfStudents = totalHeadCount - numberOfFaculty - numberOfStaff;