Table of Contents
Introduction
Commonly used primitive data types
formula
Example 2
method
illustrate
Output
in conclusion
Home Java javaTutorial Java program to check if a number is divisible by 5

Java program to check if a number is divisible by 5

Sep 11, 2023 pm 05:17 PM
java program Check if a number is divisible Number divisibility judgment

Java program to check if a number is divisible by 5

Introduction

This program is a simple Java program that checks whether the number entered by the user is divisible by 5. The program prompts the user for a number, uses the Scanner class to read the input, and then uses the modulo operator % to check whether the number is divisible by 5. If the remainder of the division is 0, then the number is divisible by 5, and the program prints a message to the console indicating this. If the remainder is not 0, the number is not divisible by 5, and the program also prints a message to the console to indicate this.

The program uses basic Java concepts such as variables, user input, conditional statements, and console output. It also demonstrates how to use the Scanner class to read user input from the console.

Commonly used primitive data types

When writing programs that involve user input, it is helpful to have a basic understanding of the range of values ​​that different data types can store. Here is a quick overview of some commonly used primitive data types in Java and the range of values ​​they can store -

type of data size Range of storing integers
short 2 bytes -32,768 to 32,767
int 4 bytes -2,147,483,648 to 2,147,483,647
long 8 bytes -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807

It is important to note that the above ranges apply to the primitive data type itself and do not take into account any constraints or limitations that may be imposed by the context or the program itself. For example, a program might restrict inputs to a specific range of values ​​or impose additional constraints on data types.

formula

number % 5 == 0
Copy after login

Example 1

method

  • First, we import the Scanner class to read user input.

  • Then we create a Scanner object to read input from the console.

  • We prompt the user to enter a number.

  • We use the nextInt() method of the Scanner class to read the number entered by the user and store it in the integer variable number.

  • We then use the modulo operator % to check if the number is divisible by 5. A number is divisible by 5 if the remainder when divided by 5 is 0. If the remainder is not 0, then the number is not divisible by 5.

  • We then print a message to the console indicating whether the number is divisible by 5.

  • Finally, we close the Scanner object to release all resources associated with it.

This is a Java program to check if a number is divisible by 5.

import java.util.Scanner;

public class DivisibleBy5 {
   public static void main(String[] args) {
      Scanner scanner = new Scanner(System.in);
      System.out.print("Enter a number: ");
      int number = scanner.nextInt();

      if (number % 5 == 0) {
         System.out.println(number + " is divisible by 5.");
      } else {
         System.out.println(number + " is not divisible by 5.");
      }

      scanner.close();
   }
}
Copy after login

illustrate

In this program, we first import the Scanner class to read user input. We then prompt the user to enter a number and read it using the nextInt() method of the Scanner class.

Then we use the modulo operator % to check if the number is divisible by 5. A number is divisible by 5 if the remainder when divided by 5 is 0. If the remainder is not 0, then the number is not divisible by 5.

We then print a message to the console indicating whether the number is divisible by 5. Finally, we close the Scanner object to release all resources associated with it.

Output

Enter a number: 55
55 is divisible by 5.
Copy after login

Example 2

method

  • Create a Scanner object to read input from the console.

  • Prompts the user to enter a number.

  • Use the Scanner object's nextBigInteger() method to read the input and store it in a BigInteger variable.

  • Use the mod() method of the BigInteger class to calculate the remainder of the input number divided by 5.

  • Compare the result of mod() with BigInteger.ZERO and check whether the remainder is equal to 0.

  • If the remainder is 0, print a message to the console indicating that the number is divisible by 5.

  • If the remainder is not 0, print a message to the console indicating that the number is not divisible by 5.

  • Close the Scanner object to release all resources associated with it.

Here is a Java program for checking whether a number is divisible by 5, assuming the input number is not very large -

import java.math.BigInteger;
import java.util.Scanner;

public class DivisibleBy5 {
   public static void main(String[] args) {
      Scanner scanner = new Scanner(System.in);

      System.out.print("Enter a number: ");
      BigInteger number = scanner.nextBigInteger();

      if (number.mod(BigInteger.valueOf(5)).equals(BigInteger.ZERO)) {
         System.out.println(number + " is divisible by 5.");
      } else {
         System.out.println(number + " is not divisible by 5.");
      }

      scanner.close();
   }
}
Copy after login

illustrate

In this program, we use the BigInteger class in the java.math package to handle large integers. The program prompts the user to enter a number, uses the Scanner class to read the input, and then creates a BigInteger object to store the entered number.

To check whether a number is divisible by 5, we use the mod() method of the BigInteger class to calculate the remainder of the input number divided by 5. We compare the result of mod() with BigInteger.ZERO to check if the remainder is equal to 0. If the remainder is 0, then the number is divisible by 5, and the program prints a message to the console to indicate this. If the remainder is not 0, the number is not divisible by 5, and the program also prints a message to the console to indicate this.

Please note that we use BigInteger.valueOf(5) to create a BigInteger object representing the value 5 because the % operator cannot be used directly with BigInteger objects.

Output

Enter a number: 56
56 is not divisible by 5.
Copy after login

in conclusion

  • We explored two different ways to check if a number is divisible by 5 in Java.

  • The first method uses a simple modulo operation to calculate the remainder of the input number divided by 5, while the second method uses the BigInteger class to handle large integers and uses the mod() method to perform the same operation.

The above is the detailed content of Java program to check if a number is divisible by 5. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Java program opens command prompt and inserts command Java program opens command prompt and inserts command Aug 19, 2023 pm 12:29 PM

ThisarticleusesvariousapproachesforselectingthecommandsinsertedintheopenedcommandwindowthroughtheJavacode.Thecommandwindowisopenedbyusing‘cmd’.Here,themethodsofdoingthesamearespecifiedusingJavacode.TheCommandwindowisfirstopenedusingtheJavaprogram.Iti

Write a Java program to calculate the area and perimeter of a rectangle using the concept of classes Write a Java program to calculate the area and perimeter of a rectangle using the concept of classes Sep 03, 2023 am 11:37 AM

The Java language is one of the most commonly used object-oriented programming languages ​​in the world today. The concept of classes is one of the most important features of object-oriented languages. A class is like a blueprint for an object. For example, when we want to build a house, we first create a blueprint of the house, in other words, we create a plan that shows how we are going to build the house. According to this plan we can build many houses. Likewise, using classes, we can create many objects. Classes are blueprints for creating many objects, where objects are real-world entities like cars, bikes, pens, etc. A class has the characteristics of all objects, and the objects have the values ​​of these characteristics. In this article, we will write a Java program to find the perimeter and faces of a rectangle using the concept of classes

Java program to get the size of a given file in bytes, kilobytes and megabytes Java program to get the size of a given file in bytes, kilobytes and megabytes Sep 06, 2023 am 10:13 AM

The size of a file is the amount of storage space that a specific file takes up on a specific storage device, such as a hard drive. The size of a file is measured in bytes. In this section, we will discuss how to implement a java program to get the size of a given file in bytes, kilobytes and megabytes. A byte is the smallest unit of digital information. One byte equals eight bits. One kilobyte (KB) = 1,024 bytes, one megabyte (MB) = 1,024KB, one gigabyte (GB) = 1,024MB and one terabyte (TB) = 1,024GB. The size of a file usually depends on the type of file and the amount of data it contains. Taking a text document as an example, the file size may be only a few kilobytes, while a high-resolution image or video file may be

Calculate interest on fixed deposits (FDs) and fixed deposits (RDs) using inherited Java program Calculate interest on fixed deposits (FDs) and fixed deposits (RDs) using inherited Java program Aug 20, 2023 pm 10:49 PM

Inheritance is a concept that allows us to access the properties and behavior of one class from another class. The class that inherits methods and member variables is called a superclass or parent class, and the class that inherits these methods and member variables is called a subclass or subclass. In Java, we use "extends" keyword to inherit a class. In this article, we will discuss a Java program to calculate interest on fixed deposits and time deposits using inheritance. First, create these four Java files - Acnt.java − in your local machine IDE. This file will contain an abstract class ‘Acnt’ which is used to store account details like interest rate and amount. It will also have an abstract method 'calcIntrst' with parameter 'amnt' for calculating

Java program used to check if TPP students are eligible for interviews Java program used to check if TPP students are eligible for interviews Sep 06, 2023 pm 10:33 PM

Please consider the table below to know the eligibility criteria of different companies - The Chinese translation of CGPA is: GPA greater than or equal to 8 Eligible companies Google, Microsoft, Amazon, Dell, Intel, Wipro greater than or equal to 7 Tutorial points, accenture, Infosys , Emicon, Rellins greater than or equal to 6rtCamp, Cybertech, Skybags, Killer, Raymond greater than or equal to 5Patronics, Shoes, NoBrokers Let us enter the java program to check the eligibility of tpp students for interview. Method 1: Using ifelseif condition Normally when we have to check multiple conditions we use

JAVA program to convert Roman numerals to integer numbers JAVA program to convert Roman numerals to integer numbers Aug 25, 2023 am 11:41 AM

Roman Numerals - Based on the ancient Roman system that uses symbols to represent numbers. These numbers are called Roman numerals. The symbols are I, V, X, L, C, D and M, which represent 1, 5, 10, 50, 100, 500 and 1,000 respectively. Integers - An integer is an integer consisting of positive, negative and zero values. Fractions are not whole numbers. Here we set the symbol value based on the integer value. Whenever a Roman numeral is given as input, we divide it into units and then calculate the appropriate Roman numeral. I-1II–2III–3IV–4V–5VI–6…X–10XI–11..XV-15 In this article, we will learn how to convert Roman numerals to integers in Java. Show you some examples - Example 1InputR

Java program to create pyramids and patterns Java program to create pyramids and patterns Sep 05, 2023 pm 03:05 PM

If anyone wants to get a solid foundation in Java programming language. Then, it is necessary to understand how the loop works. Furthermore, solving Pyramid Pattern problems is the best way to enhance your knowledge of Java basics as it includes extensive use of for and while loops. This article aims to provide some Java programs to print pyramid patterns with the help of different types of loops available in Java. Java Program to Create Pyramid Pattern We will print the following pyramid patterns through Java program - Inverted Star Pyramid Star Pyramid Number Pyramid Let's discuss one by one. Mode 1: The inverted star pyramid method declares and initializes an integer "n" with the specified number of rows. Next, define the initial count of the space as 0 and the initial count of the star as "n+

Java program to rotate image Java program to rotate image Sep 01, 2023 pm 04:25 PM

An image file can be rotated clockwise or counterclockwise. To rotate an image, you need to download a random image file and save it in any folder on your system. Also, a .pdf file is required and after opening the downloaded image file, some angle can be rotated in that particular .pdf file. For a 90 degree rotation, the anchor points of the new image can help us perform the rotation using the translation transform in Java. The anchor point is the center of any particular image. AlgorithmtoRotateanImagebyUsingJavaThe"AffineTransformOp"classisthesimplestwaytorotatea

See all articles