要求:输入一个五位数,求它的个、十、百、千、万位数上的数字。
代码如下
package manong.xiaoduan;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// write your code here
Scanner sc=new Scanner(System.in);
System.out.println("请输入一个五位数x=");
int x= sc.nextInt();
int a=x/10000;
int b=(x-a*10000)/1000;
int c=(x-a*10000-b*1000)/100;
int d=(x-a*10000-b*1000-c*100)/10;
int e=x-a*10000-b*1000-c*100-d*10;
System.out.println(x+"万位是"+a);//万位
System.out.println(x+"千位是"+b);//千位
System.out.println(x+"百位是"+c);//百位
System.out.println(x+"十位是"+d);//十位
System.out.println(x+"个位是"+e);//个位
}
}
输出结果如下:
请输入一个五位数x=
12345
12345万位是1
12345千位是2
12345百位是3
12345十位是4
12345个位是5
Disconnected from the target VM, address: '127.0.0.1:53957', transport: 'socket'
Process finished with exit code 0
我是“想当码农的小段”,希望各位过路的伙伴能多多指点,可以与我共同分享书籍、资料,谢谢!