Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 1(5pt): Practicum average In this course, students need to have at least 67 average score on practicums to earn C- or higher letter grades.
Question 1(5pt): Practicum average In this course, students need to have at least 67 average score on practicums to earn C- or higher letter grades. It would be useful to have a program to calculate your practicum average. Write a program that asks the user to enter three practicum scores and calculate the average score Then, it prints the average score and prints the message depending on the average score. If the calculated average score is 67 or higher, then it prints "You have a passing practicum average." If it's below 67, then it prints "You can retake practicums during the final." Each practicum score should be an integer value. The practicum average should be a double formatted with a two-digit precision as shown below. Expected output 1 (bold is user input) Enter practicum 1 score: 90 Enter practicum 2 score: 85 Enter practicum 3 score: 75 Practicum average: 83.33 You have a passing practicum average. The file should be named as practicum.cpp. Don't forget to head over to the code runner on Moodle and paste your solution in the answer box
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started