Improved grammar and whitespace for prompts

This commit is contained in:
Jas 2019-10-06 14:52:05 +05:30 committed by GitHub
parent 0f2f5861c4
commit 5e7dad9483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,17 +6,17 @@ public class PrimeCheck {
public static void main(String[] args) { public static void main(String[] args) {
Scanner scanner = new Scanner(System.in); Scanner scanner = new Scanner(System.in);
System.out.println("Enter n:"); System.out.print("Enter a number: ");
int n = scanner.nextInt(); int n = scanner.nextInt();
if (isPrime(n)) { if (isPrime(n)) {
System.out.println(n + "is prime number"); System.out.println(n + " is a prime number");
} else { } else {
System.out.println(n + "is not prime number"); System.out.println(n + " is not a prime number");
} }
} }
/*** /***
* Check a number is prime or not * Checks if a number is prime or not
* @param n the number * @param n the number
* @return {@code true} if {@code n} is prime * @return {@code true} if {@code n} is prime
*/ */