write a c++ program to obtain the sum of three numbers
Answers
Answered by
0
#include<iostream.j>
#include<conio.h>
void main()
{
int a,b,c,s;
cout>>"enter a b and c";
cin<<a<<b<<c;
s=a+b+c;
cout>>"the sum =">>s;
getch()
}
#include<conio.h>
void main()
{
int a,b,c,s;
cout>>"enter a b and c";
cin<<a<<b<<c;
s=a+b+c;
cout>>"the sum =">>s;
getch()
}
bShrav:
HOPE THIS HELPS
Similar questions