-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.java
More file actions
36 lines (32 loc) · 898 Bytes
/
Copy pathStudent.java
File metadata and controls
36 lines (32 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//import java.sql.Date;
//import java.text.SimpleDateFormat;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
//import java.io.List;
/**
*
*/
/**
* @author DELL
* Project Name: Java_learn
* Class Name: Student
* date: 2019年10月3日
*/
public class Student {
// public String name = "";
// public String sex = "";
// public int age = 0;
//
// SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
// String str = "2013-11-07";
// Date date = format.parse(str);
public static void main(String[] args) throws IOException{
BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in));
String[] str1 = br1.readLine().split(" ");
String str11 = str1[0];
// String str22 = str1[1];
for (int i = 0; i < str11.length(); i++) {
}
}
}