Browsing tag

operator

C program to check whether a number is even or odd

C program to check whether a number is even or odd In this tutorial, we will discuss a simple concept of C 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…

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 Addition Subtraction,Multiplication and division

C Program to Addition Subtraction, Multiplication and division In this tutorial, we will discuss C Program 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 else statements in C programming The  program will request the user to enter…

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…

Python program to find factorial of a number using while loop

Python program to find factorial of a number using while loop In this tutorial, we will discuss Python program to find factorial of a number using the while loop In this post, we use if statements and while loop to calculating factorial of a number and display it Factorial is a product of all positive…

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…

Java code to calculate factorial of a number

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

Calculate Electricity bill using Java method

Calculate Electricity bill using Java method Using user-defined method program 1 In this tutorial, we will discuss the Calculate Electricity bill using the Java method In this post, we will learn how to calculate electricity bill using if condition in the Java programming language We can calculate monthly consumed electric power usage in many ways….