Computer Science, asked by saniyamansoori4991, 3 months ago

write a program to find the average of five number

Answers

Answered by keshavshobana
0

Answer:

Solution:

// Program to calculate average of 5 numbers entered by users.

{

int num; // Declare 'num' to read number from users.

int sum, i; // Declare variables 'sum' to keep sum of numbers & 'i' used in for loop.

float average; // Declae variable 'average' of float type to save average value.

PLS MARK ME AS BRAINLIEST

Similar questions