Friday, December 13, 2019

Sum of Two Numbers in C++ Language

I wrote this simple C++ program to ask the user to give two numbers and then the program will compute the total sum of two numbers being provided by the user. The code is very easy to understand.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.


Thank you very much for your help and support.



Sample Program Output


Program Listing

 sum_two.cpp

// sum_two.cpp
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : December 13, 2019   Friday   3:07 PM
// Email  : jakerpomperada@gmail.com


#include <iostream>

using namespace std;


int sum=0,a=0,b=0;

int main()
 {
  cout <<"\n\n";
  cout <<"\tSum of Two Numbers in C++";
  cout <<"\n\n";
  cout <<"\tEnter First  Value : ";
  cin >> a;
  cout <<"\tEnter Second Value : ";
  cin >> b;
 
  sum = (a+b);
 
  cout <<"\n";
  cout <<"\tThe sum of " << a << " and " << b <<
        " is " << sum << ".";
  cout <<"\n\n";
  cout <<"\tEnd of Program";
  cout <<"\n";
} // End of Code
        
      
       
 
 




No comments:

Post a Comment