1.Write a C++ program to accept two integers and print their sum
Answers
Answered by
0
Answer:
C++ Exercises: Print the sum of two numbers
Pictorial Presentation:
Sample Solution:
C++ Code : #include <iostream> using namespace std; int main() { cout << "\n\n Print the sum of two numbers :\n"; cout << "-----------------------------------\n"; cout << " The sum of 29 and 30 is : "<< 29+30 <<"\n\n" ; } ...
Explanation:
THIS MIGHT COULD HELP YOU
Similar questions