Write a c++ program to enter two numbers and addition
Answers
Answered by
35
Answer:
c++ code for turbo compiler
#include <iostream.h>
#include<conio.h>
int main()
{
int n1, n2, n3;
cout << "Enter two integers to add\n";
cin >> n1>> n2;
n3 = n1 + n2 ;
cout <<"Sum of the numbers: " << n3 << endl;
return 0;
}
MARK ME AS BRAINLIEST
Answered by
0
Answer:
ok this is mot a valid and is not do any things
Similar questions