Java编程:用两种方法求输入正整数的位数。

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		//把整数n转换为字符串求其长度
		int len = Integer.toString(n).length();
		System.out.println("用字符串的方式求其长度len="+len);
		
		//用while循环求其长度
		int count = 0;
		while(true)
		{
			count++;
			n = n/10;
			if(n==0)
				break;
		}
		System.out.println("用while循环求其字符串的长度len"+count);
		
	}

}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。