Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (32 loc) · 898 Bytes

File metadata and controls

36 lines (32 loc) · 898 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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++) {
}
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.