喜欢唱跳rap篮球


私信TA

用户名:1272160812

访问量:6535

签 名:

等  级
排  名 1311
经  验 2922
参赛次数 0
文章发表 7
年  龄 0
在职情况 学生
学  校 宿舍里蹲
专  业 软件技术

  自我简介:

TA的其他文章

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		System.out.print(a / 1000 + " ");
		System.out.print((a % 1000) / 100 + " ");
		System.out.print((a % 100) / 10 + " ");
		System.out.print(a % 10);
	}
}


 

0.0分

0 人评分

  评论区