Browsing category

addition

Cpp program to Addition Subtraction,Multiplication and division

Cpp program to Addition Subtraction, Multiplication and division In this tutorial, we will discuss Cpp program to Addition Subtraction, Multiplication and division   In this post, we will learn how to perform addition, subtraction multiplication, division of any two numbers  using if else statements in Cpp programming The  program will request the user to enter…

Cpp program to add two numbers using function

Cpp program to add two numbers using function In this tutorial, we will discuss the Cpp program to add two numbers using the function. In this topic, we will learn a simple concept of how to add two number(integer , floating point)using the function in the C++ programming language already we will know the same concept using…

Addition of two numbers in Java using method

addition of two numbers in Java using methods In this tutorial, we will discuss the addition of two numbers in Java using the Java method. In this topic, we will learn a simple concept of how to add two number in Java programming language using the Java method. already we will know the same concept…

C program to add two numbers using function

C program to add two numbers using the function In this tutorial, we will learn C program to add two numbers using the function In this topic, we will learn a simple concept of how to add two number using the function in C programming language already we know the same concept using the operator…

Java program to calculate sum in array elements

Java program to calculate sum in array elements In this tutorial, we will discuss the Java program to calculate sum in array elements In this topic, we can learn how to calculate the sum of array elements. Calculate the sum of array elements Calculate the sum of array elements Using for loop This is a…

Python program to add two number using function

Python program to add two number using function In this tutorial, we will discuss Python program to add two number using function In this topic, we will learn a simple concept of how to add two numbers using the function in the Python programming language already we learned the same this concept using the operator in a…

C program to calculate sum in array elements

C program to calculate sum in array elements In this tutorial, we will discuss C program to calculate sum in array elements In this topic, we will learn code to how to calculate sum of elements in integer array in C programming language. Calculate the sum  of array elements Program 1 #include <stdio.h> #include <stdlib.h>…

Cpp program to calculate sum of array elements

Cpp program to calculate the sum of array elements In this tutorial, we will discuss the Cpp program to calculate the sum of array elements. In this topic, we will learn how to calculate the total value of array elements.   Program 1 This program calculates the total value of numbers stored in an array…

C program to the sum of two numbers

C program to the sum of two numbers In this tutorial, we will discuss the C program to the sum of two numbers. In this topic, we will learn how to find the sum of two integer number in C language Sum of two integer Program 1 #include <stdio.h> #include <stdlib.h> int main() { int…

Python program to sum of two numbers

Python program to the sum of two numbers In this tutorial, we will discuss the Python program to the sum of two numbers In this topic, we will learn how to add two numbers in Python programming language Sum of two integer numbers #find sum of two integer numbers f_no=35 #variable declaration s_no=55 sum=f_no +…