Midterm Project

 avatar
unknown
c_cpp
a year ago
1.7 kB
11
Indexable
#include <iostream>
#include <windows.h>

using namespace std;

main() {
	int choose;
	cout << "[1] Display Biodata" << endl;
	cout << "[2] JH Info" << endl;
	cout << "[3] SH Info" << endl;
	cout << "[4] Future Plan in Programming" << endl;
	cout << "[5] Exit" << endl << endl;
	cout << "Choose what to show: ";
	cin >> choose;
	
	system("cls");
	
	switch(choose) {
		case 1:
			cout << "Name: Justine B. Aggcanas" << endl;
			cout << "Age: 18" << endl;
			cout << "Email: agcanasjustine1@gmail.com" << endl;
			cout << "Cp#: 092822711310" << endl;
			cout << "Address: Brgy. Saludares Dingras Ilocos Norte" << endl;
			cout << "Status: Single" << endl;
			cout << "Birthday: June 27 2005" << endl;
			cout << "Nationality: Filipino" << endl;
			cout << "Religion: Catholic" << endl;
			system("pause");
		break;
		case 2:
			cout << "School Name: Lt. Edgar Foz National High School" << endl;
			cout << "School ID: 320809" << endl;
			cout << "School Address: Brgy. Sulquiano Dingras Ilocos Norte" << endl;
			cout << "Year Started: 2017" << endl;
			cout << "Year Graduated: 2021" << endl;
			system("pause");
		break;
		case 3:
			cout << "School Name: Lt. Edgar Foz National High School" << endl;
			cout << "School ID: 320809" << endl;
			cout << "School Address: Brgy. Sulquiano Dingras Ilocos Norte" << endl;
			cout << "Year Started: 2021" << endl;
			cout << "Year Graduated: 2023" << endl;
			system("pause");
		break;
		case 4:
			cout << "Uray ana" << endl;
			system("pause");
		break;
		case 5:
			cout << "System exited";
			system("exit");
		break;
		default:
			cout << "Invalid Input";
			system("pause");
		break;
	}
	
	return 0;
}