CJCoding With Joseph

Is Prime Method

Write a method isPrime(int n) that returns true when n is a prime number and false otherwise (treat numbers less than 2 as not prime). Read one integer from input, then print the result of isPrime. For input 7 the output is:

true

Expected Output:

true
Topics:
Methods
๐Ÿ“ฅ Auto-Input:
7
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.