// Pantea Aria // if // Ask the user to enter their exam score (as a decimal value). // If the score is 85.0 or higher, print: "Congratulations! You earned a High Distinction." // Otherwise, print: "Keep working hard to improve your score." #include #define MAX 85.0 int main(void) { printf ("enter your exam score (as a decimal value)"); double score; scanf("%lf", &score); if (score >= MAX) { printf ("Congratulations! You earned a High Distinction.\n"); } else { printf ("Keep working hard to improve your score.\n"); } return 0; }