Advertisement
jhnksr

COR, JOHN KAISER LLARVES

Sep 14th, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.26 KB | Source Code | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4.  
  5. int main() {
  6.     cout << "" << endl;
  7.     cout << "" << endl;
  8.     cout << "" << endl;
  9.     cout << "CERTIFICATE OF REGISTRATION" << endl;
  10.     cout << "" << endl;
  11.     cout << "----------------------------------------------------------------------------------------------------------------------------------\n" << endl;
  12.     cout << "" << endl;
  13.     cout << "ENROLLMENT STATUS:  " << "Enrolled" << endl;
  14.     cout << "Term: 1" << setw(30) << "School Year: 20232024" << endl;
  15.     cout << "" << endl;
  16.     cout << "Student #: 202311502" << setw(50) << "College: Computer Studies" << setw(20) << "Program: BSCSSE" << endl;
  17.     cout << "Name: LLARVES, JOHN KAISER GARCIA" << setw(25) << "Year Level: 1" << setw(32) << "1st term, SY 20232024" << endl;
  18.     cout << "" << endl;
  19.     cout << "---------------------------------------------------------------------------------------------------------------------------------\n" << endl;
  20.     cout << "|  Courses  |                 Title                   | Section | Units | Days |                Time               |     Room    |" << endl;
  21.     cout << "---------------------------------------------------------------------------------------------------------------------------------\n" << endl;
  22.     cout << "|  CCS0001  | INTRODUCTION TO COMPUTING (LEC)         |   TN09  |   2   |  T   |         10:00:00-12:40:00         |    ONLINE   |" << endl;
  23.     cout << "|  CCS0001L | INTRODUCTION TO COMPUTING (LAB)         |   TN09  |   1   |  S   |         10:00:00-12:50:00         |     E608    |" << endl;
  24.     cout << "|  CCS0003  | COMPUTER PROGRAMMING (LEC)              |   TN09  |   2   |  F   |         10:00:00-12:40:00         |    ONLINE   |" << endl;  
  25.     cout << "|  CCS0003L | COMPUTER PROGRAMMING (LAB)              |   TN09  |   1   |  TH  |         10:00:00-12:50:00         |     E608    |" << endl;
  26.     cout << "|  GED0004  | PHYSICAL EDUCATION 1                    |   TN09  |   3   | S/TH |13:00:00-14:50:00/13:00:00-14:50:00| F1105/F1105 |" << endl;
  27.     cout << "|  GED0006  | PERSONAL AND PROFESSIONAL EFFECTIVENESS |   TN09  |   2   | F/T  |07:00:00-08:20:00/07:00:00-08:20:00|    ONLINE   |" << endl;  
  28.     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;
  29.     cout << "|  GED0011  | SCIENCE, TECHNOLOGY, AND SOCIETY        |   TN09  |   3   | F/T  |14:00:00-15:50:00/14:00:00-15:50:00|    ONLINE   |" << endl;
  30.     cout << "| TOTAL UNITS 17                                                                                                                 |" << endl;
  31.     cout << "----------------------------------------------------------------------------------------------------------------------------------\n" << endl;
  32.     cout << "" << endl;
  33.     cout << "----------------------------------------------------------------------------------------------------------------------------------\n" << endl;
  34.     cout << "|Tuition Fee (17)                                                                                                     33,966.00|" << endl;
  35.     cout << "|Miscellaneous Fee                                                                                                     9,373.00|" << endl;
  36.     cout << "|Admission Fee                                                                                                           500.00|" << endl;
  37.     cout << "|ITE Laboratory Fee (CSS0001)                                                                                          3,800.00|" << endl;
  38.     cout << "|ITE Laboratory Fee (CSS0003)                                                                                          3,800.00|" << endl;
  39.     cout << "|TOTAL ASSESSMENT                                                                                                     51,439.00|" << endl;
  40.     cout << "|                                                                                                                              |" << endl;
  41.     cout << "|ID Fee                                                                                                                  368.00|" << endl;
  42.     cout << "|TOTAL AMOUNT                                                                                                         51,807.00|" << endl;
  43.     cout << "|                                                                                                                              |" << endl;
  44.     cout << "|                                                                                                                              |" << endl;
  45.     cout << "|Down Payment (Upon Enrollment) 40%                                                                                   20,722.80|" << endl;
  46.     cout << "|Midterm (Oct 09 - Oct 11 2023) 30%                                                                                   15,542.10|" << endl;
  47.     cout << "|Final (Nov 30 - Dec 04 2023) 30%                                                                                     15,542.10|" << endl;
  48.     cout << "|Add on: Installment Fee                                                                                                 250.00|" << endl;
  49.     cout << "--------------------------------------------------------------------------------------------------------------------------------" << endl;
  50.     return 0;
  51.    
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement