MCPcopy Create free account
hub / github.com/crossoverJie/JCSprout / main

Method main

src/main/java/com/crossoverjie/algorithm/HappyNum.java:58–66  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected