MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Jos

Method Jos

Java/Recursion/joshephus.java:4–9  ·  view source on GitHub ↗
(int n, int k)

Source from the content-addressed store, hash-verified

2class joshephus
3{
4 static int Jos(int n, int k)
5 {
6 if(n == 1)
7 return 1;
8 return (Jos(n - 1,k) + k-1) % n + 1;
9 }
10 public static void main(String args[])
11 {
12 Scanner I = new Scanner(System.in);

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected