一碗罗狮粉


私信TA

用户名:uq_89718803495

访问量:635

签 名:

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

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码: 

import java.util.Scanner;

class Data{

    private int year,month,day;

     public void set(String tmp){

        String s[]=tmp.split("-");

        this.year=Integer.parseInt(s[0]);

        this.month=Integer.parseInt(s[1]);

        this.day=Integer.parseInt(s[2]);

    }

    

    public void print(){

        System.out.println(year+":"+month+":"+day);

    }

}


public class Main {

public static void main(String[] args) {

Scanner in = new Scanner(System.in);

    Data a=new Data();

    a.set(in.next());

    a.print();

    //in.close();

}

}


 

0.0分

1 人评分

  评论区

  • «
  • »