Java中怎么确定输入的数是几位数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中怎么确定输入的数是几位数相关的知识,希望对你有一定的参考价值。

复制以下代码:

int num = 2772;

String str = String.valueOf(num);

System.out.println(str.length());

for(char c : str.toCharArray())

System.out.println(c);

扩展资料:

字符串的长度

public class Test

public static void main(String[] args)

int count = 0;

String regex = "[\\u4e00-\\u9fa5]";

String str = "今天阳光明媚不是吗.";

Pattern p = Pattern.compile(regex);

Matcher m = p.matcher(str);

System.out.print("提取出来的中文有:");

while (m.find())

count++;

System.out.print(m.group() + " ");


System.out.println();

System.out.println("汉字出现的频率:" + count);


参考技术A

主要思想请看代码的第17行的while方法。

如果n的个位数不为0或者n的个位数为0但高位数不为0则用count+1并且将n/10,再次进入循环,直至n为0。n为0时即得到位数count。

代码如下:

运行结果:

扩展资料:

JAVA常用代码段:

1,字符串有整型的相互转换

String a = String.valueOf(2);   //integer to numeric string 

int i = Integer.parseInt(a); //numeric string to an int

2,向文件末尾添加内容

BufferedWriter out = null; 

try  

out = new BufferedWriter(new FileWriter(”filename”, true)); 

out.write(”aString”); 

catch (IOException e)  

// error processing code 

finally  

if (out != null)  

out.close(); 

 

3,得到当前方法的名字

String methodName = Thread.currentThread().getStackTrace()[1].getMethodName();

4,转字符串到日期

java.util.Date = java.text.DateFormat.getDateInstance().parse(date String);

5,把 Java util.Date 转成 sql.Date

java.util.Date utilDate = new java.util.Date(); 

java.sql.Date sqlDate = new java.sql.Date(utilDate.getTime());



参考技术B

主要思想请看代码的第17行的while方法

如果n的个位数不为0或者n的个位数为0但高位数不为0则用count+1并且将n/10,再次进入循环,直至n为0。n为0时即得到位数count

代码如下:

运行结果:

参考技术C 转成字符串再找就行

假设那个数叫num

String str = String.valueOf(num);
int count = str.length();

count就是num的位数了
参考技术D 不知道是从console输入的不
大多都有length属性,试试吧
System.out.println("请输入字符串:");
Scanner sc;
sc= new Scanner(System.in);
String str = sc.next();

str的length就是了本回答被提问者采纳

输入的数是几位数

 1 a = int(input(">>"))
 2 n = 1
 3 while True:
 4     b = a%10
 5     print(b,end=,)
 6     a = a//10
 7     if a != 0:
 8         n += 1
 9     else:
10         break
11 print(这是,n,位数)

技术分享图片技术分享图片

以上是关于Java中怎么确定输入的数是几位数的主要内容,如果未能解决你的问题,请参考以下文章

编写一个简单的Java应用程序,用户从键盘输入一个1~99999之间的数,程序将判断这个数是几位数,并判断这个数是否是回文数。

编写一个简单的Java应用程序,用户从键盘输入一个1~99999之间的数,程序将判断这个数是几位数,并判断这个数是否是回文数。

实验二 判断回文数

输入一个4位数的正整数,用C#编写程序,输出这个数的千位、百位、十位和个位,怎么写?

60291253去掉三个数字最小的数是?

判断一个数是否为回文数