Main CPP
Main CPP
#include <string>
int main() {
// Basic Information
string name = "Alex"; // Replace with your name
int age = 21; // Replace with your age
int studyHours = 4; // Number of hours planned for study
int exerciseHours = 1; // Number of hours planned for exercise
int relaxHours = 2; // Number of hours planned for relaxation
// Routine Details
cout << "\n--- Daily Routine ---" << endl;
cout << "7:00 AM - Wake up" << endl;
cout << "8:00 AM - Start studying (" << studyHours << " hours)" << endl;
cout << "12:00 PM - Take a break and have lunch" << endl;
cout << "1:00 PM - Exercise (" << exerciseHours << " hour)" << endl;
cout << "2:00 PM - Relax or pursue a hobby (" << relaxHours << " hours)" <<
endl;
cout << "10:00 PM - Prepare for bed" << endl;
if (balanced) {
cout << "This is a well-balanced routine!" << endl;
} else {
cout << "Adjustments needed to balance your routine." << endl;
}
return 0;
}