(String[] args)
| 3 | |
| 4 | public class BnaryCal { |
| 5 | public static void main(String[] args) { |
| 6 | Scanner scn = new Scanner(System.in); |
| 7 | int number = scn.nextInt(); |
| 8 | |
| 9 | calculateBinary(number, calculateLength(number)); |
| 10 | |
| 11 | } |
| 12 | |
| 13 | static int calculateLength(int n){ |
| 14 | int count =0; |
nothing calls this directly
no test coverage detected