// Pantea Aria // if // Ask the user to enter the number of hours they plan to study today (as an integer). // If the number is greater than 5, print: "Great job! That's a productive day." // Otherwise, print: "Try to study a bit more to stay on track." #include #define MAX 5 int main(void) { printf ("enter the number of hours they plan to study today:"); int hours; scanf ("%d", &hours); if (hours > 5) { printf ("Great job! That's a productive day.\n"); } else { printf ("Try to study a bit more to stay on track.\n"); } return 0; }