Friday 15 September 2017

C++ Program to calculate sum and average of three numbers

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr() //to clear the screen
float a,b,c,sum,av;
cout<<“Enter three numbers:”;
cin>>a>>b>>c;
sum=a+b+c;
av=sum/3;
cout<<“nSUM=”<<sum;
cout<<“nAverage=”<<av;
getch(); //to stop the screen
}

0 comments:

Post a Comment

Tech UOG