MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

NumberOfDigit.java:15–20  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

13class 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected