Browsing category

Calculations

Java program to calculate the sum of natural numbers

Java program to calculate the sum of natural numbers using loops In this tutorial, we will discuss a concept of Java program to calculate the sum of natural numbers using loops In this article, we are going to learn  how to  find the sum of natural numbers using loops in the Java programming language Java…

C program to calculate the sum of natural numbers

C program to find the sum of natural numbers in  using loops In this tutorial, we will discuss a concept of C program to find the sum of natural numbers using loops In this article, we are going to learn  how to  find the sum of natural numbers using loops in the C programming language…

Use of C++ program to find sum of two numbers using recursion

Use of C++ program to find sum of two numbers using recursion In this tutorial, we will discuss a concept of the  Use of C++ program to find sum of two numbers using recursion In this article, we are going to learn  how to  find the addition of two numbers using recursion in the C++…

Calculate power of a number using recursion in Java

Program to Calculate power of a number using recursion in Java In this article, we will discuss the concept of program to Calculate power of a number using recursion in Java language In this post, we will learn how to  find the power of a number  using recursive function in Java language Program 1 import…

Java code to Calculate average of odd and even in an array

Java code to Calculate average of odd and even in an array In this tutorial, we will discuss the simple concept of the  Java code to calculate the average of odd and even numbers in an array. In this article, we are going to learn  how to  calculate the average of odd and even numbers…

Calculate power of a number using recursion in C++

 Calculate power of a number using recursion in C++ In this article, we will discuss the concept of Calculate power of a number  using recursion in C++ programming language In this post, we will learn how to  find the power of a number using a recursive function in C language Program 1 #include <iostream> #include…

Calculate power of a number using recursion in C language

Calculate power of a number using recursion in C language In this tutorial, we will discuss the concept of  Calculate power of a given number using recursion in C language In this post, we will learn how to  find the power of a given number using recursion in C  language   Program 1 #include <stdio.h>…

Calculate electricity power:Python program using function

Calculate Electricity power: Python program using function In this tutorial, we will discuss the Calculate Electricity power: Python program using the function In this article, we will discuss how to calculate monthly  electricity bill using the function in the Python  programming language We can calculate monthly electric power usage in many approaches in Python language…