(String[] args)
| 56 | |
| 57 | |
| 58 | public static void main(String[] args) { |
| 59 | int num = 345; |
| 60 | int i = num % 10; |
| 61 | int i1 = num / 10; |
| 62 | int i2 = i1 / 10; |
| 63 | System.out.println(i); |
| 64 | System.out.println(i1); |
| 65 | System.out.println(i2); |
| 66 | } |
| 67 | } |
nothing calls this directly
no outgoing calls
no test coverage detected