Computer Science, asked by hiramani, 1 year ago

write a program in c++ to input three numbers and calculate the sum and multiply of that number.

Answers

Answered by Baivab
2
#include<iostream.h>
#include<conio.h>
void main ()
{
clrscr ();
int a,b,c;
cout<<"Enter any three number";
cin>>a>>b>>c;
cout<<"The sum is"<<a+b+c<<endl;
cout<<"The multiplication is"<<a*b*c<<endl;
getch();
}
Similar questions