Skip to content

Instantly share code, notes, and snippets.

@javamultiplex
Created September 20, 2017 11:40
Show Gist options
  • Save javamultiplex/06801fdd3942ff5db5e9727458b647b8 to your computer and use it in GitHub Desktop.
Save javamultiplex/06801fdd3942ff5db5e9727458b647b8 to your computer and use it in GitHub Desktop.
Given Number is Decimal or not?
package com.javamultiplex.number;
import java.util.Scanner;
/**
*
* @author Rohit Agarwal
* @category Number Problems
* @problem Number is decimal or not
*
*/
public class DecimalNumber {
public static void main(String[] args) {
Scanner input = null;
try {
input = new Scanner(System.in);
System.out.println("Enter number : ");
String number = input.next();
/*
* Regular expression that matches string containing only
* digits[0-9].
*/
String pattern1 = "^[0-9]+$";
if (number.matches(pattern1)) {
System.out.println("It is decimal.");
} else {
System.out.println("It is not decimal.");
}
} finally {
if (input != null) {
input.close();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment