叶倾城


私信TA

用户名:dotcpp0702726

访问量:1529

签 名:

等  级
排  名 7608
经  验 1299
参赛次数 0
文章发表 17
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

import java.util.Scanner;

public class Main {
    private static int year,month,day;
    Main(String tmp){
        String s[]=tmp.split("-");
        this.year=Integer.parseInt(s[0]);
        this.month=Integer.parseInt(s[1]);
        this.day=Integer.parseInt(s[2]);
    }
    private void print(){
        System.out.println(year+":"+month+":"+day);
    }
    public static void main(String[] args) {
        Scanner in=new Scanner(System.in);
        Main obj=new Main(in.nextLine());
        obj.print();
        in.close();
    }
}


 

0.0分

2 人评分

  评论区

  • «
  • »