Computer Science, asked by priyanshusinha8964, 8 months ago

Write a c++ program to enter two numbers and addition

Answers

Answered by kailashmeena123rm
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 kishlaykumar61
0

Answer:

ok this is mot a valid and is not do any things

Similar questions
Math, 10 months ago