Joined
Last Seen
-5 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
30% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
0 Endorsements
Ranked #107.73K
1 Posted Topic
I dont know C++ but there is an easier way taht works for me in both C# and Java. [code=java] Integer number = 555; System.out.println(number.toString().toCharArray().length); [/code] This will put the number 555 into string "555" which in Char array is [5][5][5], and length of which is 3 which is gives …
The End.
taepodong1101