赞
踩
写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数字间空格。如输入1990,应输出"1 9 9 0 "。
注意最后一个数字后也有一个空格
增加空格输出
1990
1 9 9 0
- import java.util.Scanner;
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner sc=new Scanner(System.in);
- int e=sc.nextInt();
- int a=e/1000;
- int b=e/100%10;
- int c=e/10%10;
- int d=e%10;
- int ends=a*1000+b*100+c*10+d;
- System.out.print(a+" "+b+" "+c+" "+d);
-
- }
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。