// -----------------------------
// Dr. Joseph Manthey
// ----------------------------
# include
using namespace std;
int main( )
{
int credits;
cout << "Enter the number of credits: ";
cin >> credits;
if (credits < 32)
cout << "Student is a freshman." << endl;
else if ((credits >=32) && (credits <= 63))
cout << "Student is a sophomore." << endl;
else if ((credits >=64) && (credits <= 95))
cout << "Student is a junior." << endl;
else
cout << "Student is a senior." << endl;
return 0;
}
               (
geocities.com/vuumanj)