@Test
public void test6(){
int a = 10;
int b = 0;
System.out.println(a / b);
}
@Test
public void test5(){
Scanner scanner = new Scanner(System.in);
int score = scanner.nextInt();
System.out.println(score);
scanner.close();
}
@Test
public void test4(){
String str = "123";
str = "abc";
int num = Integer.parseInt(str);
}
@Test
public void test3(){
Object obj = new Date();
String str = (String)obj;
}
@Test
public void test2(){
String str = "abc";
System.out.println(str.charAt(3));
}
@Test
public void test1(){
String str = "abc";
str = null;
System.out.println(str.charAt(0));
}