solve the c++ coding (find the sum of two numbers)
Answers
Answered by
1
Answer:
C++ Exercises: Print the sum of two numbers using variables
Sample Solution:
C++ Code : #include <iostream> using namespace std; int main() { cout << "\n\n Print the sum of two numbers :\n"; cout << "-----------------------------------\n"; int a; int b; int sum; a=29; b=30; sum=a+b; cout << " The sum of "<< a << " and "<<b <<" is : "<< sum <<"\n\n" ; } ...
Flowchart:
Hope it helps uhh.
Please mark as brainleist.
Similar questions