-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhopCount.java
41 lines (32 loc) · 1.03 KB
/
hopCount.java
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package zerakiassessment;
import java.util.List;
import java.util.Scanner;
import static zerakiassessment.reverseCharacters.splitToFour;
/**
*
* @author Eclectics
*/
public class hopCount {
public static void main(String[] args) {
// TODO code application logic here
Scanner myObj1 = new Scanner(System.in);
System.out.println("Input length of River:");
// String input
int length = myObj1.nextInt();
Scanner myObj = new Scanner(System.in);
System.out.println("Input number of stones:");
// String input
int Stones = myObj.nextInt();
int result = numberOfCOunt(Stones);
System.out.println(result);
}
private static int numberOfCOunt(int stones){
int result = 0;
return result;
}
}