/***************************************************************************** * Determines if a year is an election year. * * Inputed: year. * * Outputed: (A statement concluding if it is an election year). * * Written: October 23, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 29 #include #include #include int main() { int year=0; cout<<"Please enter a year:"<>year; year=year%4; switch(year) { case 0: cout<<"This year is an election year."<