Browsing category

Calculations

C program to Electricity bill calculation using function

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

Electricity bill Calculation program using function in Cpp

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

Cpp program to check whether a number is even or odd

Cpp program to check whether a number is even or odd In this tutorial, we will discuss the Cpp program to check whether a number is even or odd In this program, we are going to learn about how to find  odd or even number from given number using if else statements in C++ programming language…

Java code to Addition Subtraction,Multiplication and division

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

C program to find factorial using function

C program to find factorial using function In this tutorial, we will discuss the concept of C program to find factorial using function Factorial is a product of all positive descending integer begins with a specified number (n) and calculates up to one   Example factorial of 5 is 5!=5*4*3*2*1=120   factorial of 4 is…

Cpp program to find factorial using function

CPP program to find factorial using Function In this tutorial, we will discuss Cpp program to find factorial using Function There are many ways to calculate a factorial using C++ programming language. In this tutorial, we are going to learn about how to calculate factorial of a given number using the C++ function   Factorial…

Java code to find factorial using method

Java code to find factorial using  method In this tutorial, we will discuss Java code to find factorial using  method There are many ways to calculate a factorial using  Java programming language. In this tutorial, we are going to learn about how to calculate factorial of a given number using Java method.   Factorial is…

Python program to find factorial of a number

Python program to find factorial of a number In this tutorial, we will discuss Python program to find factorial of a number. In this post, we use if statements and for loop to calculating factorial of a number Factorial is a product of all positive descending integer begins with a specified number (n) and calculates…

C program to find factorial of a number

C program to find factorial of a number In this tutorial, we will discuss the concept of C program to find factorial of a number Factorial is a product of all positive descending integer begins with a specified number (n) and calculates up to one   Example factorial of 5 is 5!=5*4*3*2*1=120   factorial of…

Cpp program to find factorial of a number

Cpp program to find factorial of a number In this tutorial, we will discuss the concept of Cpp program to find factorial of a number Factorial is a product of all positive descending integer begins with a specified number (n) and calculates upto one There are many ways to calculate factorial using C++ language. some…