Browsing category

addition

Cpp program to sum two numbers

Cpp program to sum two numbers In this tutorial, we will discuss the topic of Cpp program to sum two numbers In this topic, we will learn how to add two numbers in C++ programming language Find Sum to numbers  Example- 1 Program 1 #include <iostream> #include <conio.h> using namespace std; int main() { int…

Java program to sum of two numbers

Java program to the sum of two numbers In this tutorial, we will discuss the Java program to the sum of two numbers In this topic, we will learn how  to add two numbers in Java programming language Sum of two numbers public class Add_Two_Numbers{ public static void main(String args[]){ int num_1=23,num_2=32,sum; //declare variables sum=num_1+num_2;…