반응형
package java_algorithm;
import java.util.Scanner;
public class ex100_11 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
String cha01 = sc.nextLine();
String cha02 = sc.nextLine();
System.out.println(cha02 + "" + cha01);
}
}
반응형
'Projects > 자바 100제' 카테고리의 다른 글
자바 100제 12번 scanner nextline (0) | 2022.01.30 |
---|---|
자바 100제 10번 scanner nextInt 응용 (0) | 2022.01.30 |
자바 100제 9번 scanner nextdouble (0) | 2022.01.30 |
자바 100제 8번 scanner nextLine (0) | 2022.01.30 |
자바 100제 7번 문제 스캐너 (0) | 2022.01.30 |