Tag Archives: operator
- Home
- Posts Tagged "operator" (Page 10)
- On
- By
- 0 Comment
- Categories: Check value
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…
Read More- On
- By
- 3 Comments
- Categories: addition, Calculations, multiply
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…
Read MoreC 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…
Read MoreCpp 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…
Read More- On
- By
- 1 Comment
- Categories: Find elements
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…
Read More- On
- By
- 0 Comment
- Categories: Calculations
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…
Read More- On
- By
- 0 Comment
- Categories: Calculations
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…
Read More- On
- By
- 0 Comment
- Categories: Calculations
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…
Read More- On
- By
- 0 Comment
- Categories: Calculations
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…
Read More- On
- By
- 0 Comment
- Categories: Bill calculation, Calculations
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….
Read More