Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <iomanip>
- using namespace std;
- int main() {
- int term;
- char schoolyear[10];
- char name[100];
- char studentno[100];
- char college[100];
- char program[100];
- cout << "Name: ";
- cin.getline(name,99);
- cout << "Student Number: ";
- cin.getline(studentno,99);
- cout << "College: ";
- cin.getline(college,99);
- cout << "Program: ";
- cin.getline(program,99);
- cout << "Term: ";
- cin >> term;
- cout << "School Year: ";
- cin.getline(schoolyear,9);
- cin >> schoolyear;
- system("cls");
- system("pause");
- system("cls");
- cout << "" << endl;
- cout << "" << endl;
- cout << "CERTIFICATE OF REGISTRATION" << endl;
- cout << "" << endl;
- cout << "----------------------------------------------------------------------------------------------------------------------------------\n" << endl;
- cout << "" << endl;
- cout << "ENROLLMENT STATUS: " << "Enrolled" << endl;
- cout << "Term: 1" << setw(30) << "School Year: 20232024" << endl;
- cout << "" << endl;
- cout << "Student #: 202311502" << setw(50) << "College: Computer Studies" << setw(20) << "Program: BSCSSE" << endl;
- cout << "Name: LLARVES, JOHN KAISER GARCIA" << setw(25) << "Year Level: 1" << setw(32) << "1st term, SY 20232024" << endl;
- cout << "" << endl;
- cout << "---------------------------------------------------------------------------------------------------------------------------------\n" << endl;
- cout << "| Courses | Title | Section | Units | Days | Time | Room |" << endl;
- cout << "---------------------------------------------------------------------------------------------------------------------------------\n" << endl;
- cout << "| CCS0001 | INTRODUCTION TO COMPUTING (LEC) | TN09 | 2 | T | 10:00:00-12:40:00 | ONLINE |" << endl;
- cout << "| CCS0001L | INTRODUCTION TO COMPUTING (LAB) | TN09 | 1 | S | 10:00:00-12:50:00 | E608 |" << endl;
- cout << "| CCS0003 | COMPUTER PROGRAMMING (LEC) | TN09 | 2 | F | 10:00:00-12:40:00 | ONLINE |" << endl;
- cout << "| CCS0003L | COMPUTER PROGRAMMING (LAB) | TN09 | 1 | TH | 10:00:00-12:50:00 | E608 |" << endl;
- cout << "| GED0004 | PHYSICAL EDUCATION 1 | TN09 | 3 | S/TH |13:00:00-14:50:00/13:00:00-14:50:00| F1105/F1105 |" << endl;
- cout << "| GED0006 | PERSONAL AND PROFESSIONAL EFFECTIVENESS | TN09 | 2 | F/T |07:00:00-08:20:00/07:00:00-08:20:00| ONLINE |" << endl;
- cout << "| GED0009 | READINGS IN PHILIPPINE HISTORY | TN09 | 3 | S/TH |07:00:00-08:50:00/07:00:00-08:50:00| F612/F612 |" << endl;
- cout << "| GED0011 | SCIENCE, TECHNOLOGY, AND SOCIETY | TN09 | 3 | F/T |14:00:00-15:50:00/14:00:00-15:50:00| ONLINE |" << endl;
- cout << "| TOTAL UNITS 17 |" << endl;
- cout << "-------------------------------------------------------------------------------------------------------------------------------\n" << endl;
- cout << "" << endl;
- int misc, adminfee, itelab1, itelab3, id, units;
- int b = 1998;
- cout << "Units: ";
- cin >> units;
- int c = units * b;
- cout << "Your Unit Tuition is: " << c << endl;
- cout << "Misc. Fee: ";
- cin >> misc;
- cout << "Admission Fee: ";
- cin >> adminfee;
- cout << "ITE Laboratory Fee (CSS0001): ";
- cin >> itelab1;
- cout << "ITE Laboratory Fee (CSS0003): ";
- cin >> itelab3;
- cout << "ID Fee: ";
- cin >> id;
- int d = c + misc + adminfee + itelab1 + itelab3 + id;
- cout << "TOTAL TUITION FEE: " << d << ".00" << endl;
- cout << "" << endl;
- cout << "" << endl;
- int midterm = d * 0.3;
- int downpay = d * 0.4;
- int final = d * 0.3;
- cout << "Down Payment (Upon Enrollment) 40%: " << downpay << endl;
- cout << "Midterm (Oct 09 - Oct 11 2023) 30%: " << midterm << endl;
- cout << "Final (Nov 30 - Dec 04 2023) 30%: " << final << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement