Java Leap Year Program|Java Program In this article, we will discuss the concept of Java Leap Year Program. In this Program, we are going to learn how to make sure the given year whether leap year or not using different methods in Java language. This is done using if-else , if-else if-else, Nested -if,ternary operator…
Tag: Java language
Program to display prime numbers from 1 to 100 or 1 to n in Java
Program to display prime numbers from 1 to 100 or 1 to n in Java In this article, we will discuss the concept of Program to display prime numbers from 1 to 100 or 1 to n in Java In this program, we are going to learn how to write the code to display prime…
Program to count Positive, Negative and zero in an array of Java
Program to count Positive, Negative and zero in an array of Java In this article, we will discuss the concept of program to count Positive, Negative and zero in an array of Java In this code, we are going to learn how to count Positive numbers, Negative numbers and zeros in an array using several…
Java code to Display multiplication table of a number in given range
Java code to Display multiplication table of a number in given range In this article, we will discuss the concept of Java code to Display multiplication table of a number in given range In this program, we are going to learn how to generate a multiplication table using several ways in Java language. This is done…
Program to Display multiplication table in Java
Program to display multiplication table in Java In this article, we will discuss the concept of Program to Display multiplication table in Java. In this program, we are going to learn how to generate a multiplication table. This is done using for loop , while loop , do-while loop , method and recursion in Java…
Java programming code to check prime or not
Java programming code to check prime or not In this tutorial, we will discuss the Java programming code to check prime or not In this post, we are going to learn how to check whether the given number is prime or not using 5 ways in Java language This is done using for loop, while…
Java code to check if the given number is positive or negative or 0
Java code to check if the given number is positive or negative or 0 In this tutorial, we will discuss the Java code to check if the given number is positive or negative or 0 In this post, we are going to learn how to check whether the given number is positive or Negative or…
Program to check whether the number is odd or even using operators in Java
Program to check whether the given number is odd or even using operators in Java In this tutorial, we will discuss the Program to check whether the number is odd or even using operators in Java In this post, we are going to learn how to check whether the given number is odd or even…
Java program to check whether the number is even or odd|5 ways
Java program to check whether the number is even or odd In this tutorial, we will discuss the Java program to check whether the number is even or odd In this post, we are going to learn how to check whether the given numbers is even or odd using different 5 ways in Java Check…
Java Program to Compute Quotient and Remainder
Java Program to Compute Quotient and Remainder In this tutorial, we will discuss the Java Program to Compute Quotient and Remainder In this post, we are going to learn how to find quotient and remainder of two numbers using different 5 ways in Java. Compute Quotient and Remainder Compute Quotient and Remainder-standard method Program 1…