Computer Science, asked by keerthijoy902, 1 month ago

write a c++ program to find the average of two numbers​

Answers

Answered by akzcreations
1

Answer:

#include <iostream>

using namespace std;

int main(){

int x,y,sum;

float average;

cout << "Enter 2 integers : " << endl;

cin>>x>>y;

sum=x+y;

average=sum/2;

cout << "The sum of " << x << " and " << y << " is " << sum << "." << endl;

cout << "The average of " << x << " and " << y << " is " << average << "." << endl;

}

Similar questions