5. String Practice questions
5. String Practice questions
1.Write a java program to check the given number is one digit or two digit or three
digit number etc:(where input
0<=n<=99999
input: 6
output: It is one digit number
input:999
output: It is three digit number
input string:"sample"
output: weqtpi
input string:"abcd"
output: efgh
5.Write a java program to find the lowercase letter count ,uppercase letter count
and digit count.
input string:"abcF45RGh"
output: 4,3,2