Java program to check if number has ten digit or not | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Java program to check if number has ten digit or not

Hi i don't how to check a number's digit in java i'd appriciate your help. Thanks

8th Mar 2019, 7:58 PM
Amir
Amir - avatar
3 Answers
+ 7
int x = 1234567890; String s = Integer.toString(x); System.out.print(s.length()==10?true:false); //so we get some ints //we then convert int to string using toString method thats inside class Integer //as string is an object it has methods so we access one of its methods called length //we then check to see if the returned value equals 10 if yes print true else print false
8th Mar 2019, 8:07 PM
D_Stark
D_Stark - avatar
+ 7
String input = "6282526282"; int pos = 2; System.out.print(Integer.valueOf(input.charAt(pos)+"")*pos); /* so this would be starting from index 0 8*2 = 16 */
8th Mar 2019, 11:32 PM
D_Stark
D_Stark - avatar
0
assume that we received 10 digit number. How can we multiply the numbers digit by its position. for example 1234567893 1 position is 10 i want to do this for all digits
8th Mar 2019, 9:19 PM
Amir
Amir - avatar