Write a program that allows the user to input 5 numbers. The program calculates the average of these numbers. It should print the sum and average of the 5 numbers.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section: Chapter Questions
Problem 7PP
icon
Related questions
Question
100%

Write a program that allows the user to input 5 numbers.  The program calculates the average of these numbers.  It should print the sum and average of the 5 numbers.

 

 

can you correct this please :)

#include <stdio.h>

main(){
int number1, number2, number3, number4, number, number5, average, sum;

printf("Please Enter a Number:\n");
printf("\n1st Number = ");
scanf("%d", &number1);
printf("\n2nd Number = ");
scanf("%d", &number2);
printf("\n3rd Number = ");
scanf("%d", &number3);
printf("\n4th Number = ");
scanf("%d", &number4);
printf("\n5th Number = ");
scanf("%d", &number5);
sum = number1 + number2 + number3 + number4 + number5;
average = sum / 5;
prinf("\n\nSum of the Numbers: %d\n", sum);
print("\n\nAverage: %d", average);
}

Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage