解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { private static int year,month,day; @SuppressWarnings("static-access") 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分
1 人评分
矩阵转置 (C语言代码)浏览:1565 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:610 |
简单的a+b (C语言代码)浏览:564 |
简单的a+b (C++语言代码)浏览:895 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:548 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1327 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:727 |
模拟计算器 (C++代码)浏览:885 |