(String args[])
| 13 | class NumberOfDigit |
| 14 | { |
| 15 | public static void main(String args[]) |
| 16 | { |
| 17 | int num=356, digits=0; |
| 18 | digits = (int)Math.log10(num) + 1; |
| 19 | System.out.println(digits); |
| 20 | } |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected