FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
All-Java-Works/RecursivePrime.java at master · shakiz/All-Java-Works · GitHub
shakiz
/
All-Java-Works
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
All-Java-Works
/
RecursivePrime.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (18 loc) · 514 Bytes
Breadcrumbs
All-Java-Works
/
RecursivePrime.java
Copy path
File metadata and controls
25 lines (18 loc) · 514 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package
recursive
.
prime
;
import
java
.
util
.
Scanner
;
public
class
RecursivePrime
{
public
static
void
main
(
String
[]
args
) {
Scanner
scan
=
new
Scanner
(
System
.
in
);
int
number
=
scan
.
nextInt
();
System
.
out
.
println
(
primenumber
(
number
));
}
public
static
String
primenumber
(
int
number
){
String
s
=
null
;
if
(
number
%
number
==
0
){
return
s
=
"Prime"
;
}
else
{
return
s
=
"Not Prime"
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL