Below is a generic
program outline. You can use it to get you started.
// last name, first name
// last 4 digits of SID
// ucr email address
// lecture section / lab section
// user name (log in name)
#include<iostream>
// any other librarys (e.g. string, iomanip, stdlib)
using namespace std;
int main(){
//put variable declerations here (e.g. int num,
etc...)
//put your statements here (e.g. cout << "some
message\n";)
return 0;
}