/* CS201/04 exercise Description/Vision: is this a leap year Analysis Input: a year Output: "lead year" or "normal year" */ #include using namespace std; int main() { int year; cout << "Year? "; cin >> year; if( year % 4 == 0) { cout << "Leap Year" << endl; } else { cout << "Normal Year" << endl; } return 0; // terminate program with zero errors. }