Computer Science, asked by malushreya, 1 year ago

write a c++ program to obtain the sum of three numbers

Answers

Answered by bShrav
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()
}

bShrav: HOPE THIS HELPS
bShrav: I MAY HAVE DONE CERTAIN COMMAND MISTAKES YOU MAY CORRECT THEM BY SEEING A REAL PROGRAM
bShrav: thank you
Similar questions