โ Back to Loops
Question 308
Check Prime Number (for input)
Check Prime Number (for input)
Read an integernfrom standard input and decide whether it is prime. Print exactlyPrimeif it is, orNot primeif it is not. A number is prime when it is greater than1and has no divisor other than1and itself. For input7the output is: Prime For input9the output is: Not prime
Expected Output:
Prime
Topics:
Loops
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.