解题思路:
注意事项:
参考代码:
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 人评分
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:556 |
九宫重排 (C++代码)浏览:2195 |
回文串 (C语言代码)浏览:3095 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
众数问题 (C语言代码)浏览:911 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:687 |
WU-C语言程序设计教程(第三版)课后习题12.1 (C++代码)浏览:1024 |
printf基础练习2 (C语言代码)浏览:547 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:567 |
整除问题 (C语言代码)浏览:594 |