Write the steps to display the sum and average of certain numbers
Answers
Answered by
2
Answer:
java program
Explanation:
int num1,num2,num3; //More numbers can be added
int ave= (num1+num2+num3) /3; //finding average by adding the numbers and dividing it by the number of the numbers
Similar questions