题目:由用户给定一个正整数, *要求:一、求它是几位数,二、逆序打印出各位数字。

package test1;

import java.util.Scanner;

/**
*题目:由用户给定一个正整数,
*要求:一、求它是几位数,二、逆序打印出各位数字。
*
*/
public class Test4 {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
long x=sc.nextLong();//获取用户输入
String s=Long.toString(x);//将用户输入的long类型转化为String类型
char[]ch=s.toCharArray();//将String类型转化为数组
int y=ch.length;
System.out.println(x+“是一个”+y+“位数”);
System.out.println(“逆序输出结果为:”);
for(int i=ch.length-1;i>=0;i–) {
System.out.print(ch[i]+",");
}
}
}
题目:由用户给定一个正整数, *要求:一、求它是几位数,二、逆序打印出各位数字。_第1张图片

你可能感兴趣的:(题目:由用户给定一个正整数, *要求:一、求它是几位数,二、逆序打印出各位数字。)