This java program prints prime numbers, number of prime numbers required is asked from the user. Remember that smallest prime number is 2.
Java programming code
import java.util.*;
class PrimeNumbers
{
public...
This java program finds factorial of a number. Entered number is checked first if its negative then an error message is printed.
Java programming code
import java.util.Scanner;
class Factorial {
public static...
Enhanced for loop java: Enhanced for loop is useful when scanning the array instead of using for loop. Syntax of enhanced for loop is:
for (data_type variable: array_name)
Here array_name is the name of...
This java program finds largest of three numbers and then prints it. If the entered numbers are unequal then "numbers are not distinct" is printed.
Java programming source code
import java.util.Scanner;
class...
This java program swaps two numbers using a temporary variable. To swap numbers without using extra variable see another code below.
Swapping using temporary or third variable
import java.util.Scanner;
class...
In this tutorial we will learn how to handle exception with the help of suitable examples. Exceptions are errors which occur when the program is executing. Consider the Java program below which divides two integers.
import...
Java program can contain more than one i.e. multiple classes. Following example Java program contain two classes: Computer and Laptop. Both classes have their own constructors and a method. In main method we create object...
Java constructors are the methods which are used to initialize objects. Constructor method has the same name as that of class, they are called or invoked when an object of class is created and can't be called explicitly....
Static methods in Java can be called without creating an object of class. Have you noticed why we write static keyword when defining main it's because program execution begins from main and no object has been created yet....
Java programming language offers a block known as static which is executed before main method executes. Below is the simplest example to understand functioning of static block later we see a practical use of static...
Java program consists of one or more classes and a class may contain method(s). A class can do very little without methods. In this tutorial we will learn about Java methods.Methods are known as functions in C and C++...
Java program to convert Fahrenheit to Celsius: This code does temperature conversion from Fahrenheit scale to Celsius scale.
Java programming code
import java.util.*;
class FahrenheitToCelsius {
public static...