자바8 왕초보 String scanner 사용에 대해 질문이 있습니다.
글쓴이: yesyoon5 / 작성시간: 금, 2018/10/19 - 12:40오후
안녕하세요. c, 파이썬을 조금 공부하다가 자바도 공부해보고 있는 학생입니다.
hackerrank 사이트에서 자바 튜토리얼 30으로 공부하고 있는데요.
아래 코드로 정답은 맞췄으나 문자열을 입력받는 과정이 이해가 되지 않습니다.
s2라는 문자열 자료형을 선언하고, s2 = scan.nextLine();만 하면
예를 들어 "is site"를 입력하면 "is"만 출력이 됩니다.
그런데
s2라는 문자열 자료형을 선언하고,
scan.nextLine(); s2 = scan.nextLine(); 이렇게 코딩을 하면 입력한 전체 문자열이 출력됩니다.
int나 double과는 다르게 문자열은 왜 위에 scan.nextLine(); 라는 코딩을 추가적으로 해야 하는지 궁금합니다.
import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { int i = 4; double d = 4.0; String s = "HackerRank "; Scanner scan = new Scanner(System.in); /* Declare second integer, double, and String variables. */ int i2; double d2; String s2; /* Read and save an integer, double, and String to your variables.*/ i2 = scan.nextInt(); d2 = scan.nextDouble(); scan.nextLine(); s2 = scan.nextLine(); // Note: If you have trouble reading the entire String, please go back and review the Tutorial closely. /* Print the sum of both integer variables on a new line. */ System.out.printf("%d\n", (i + i2)); /* Print the sum of the double variables on a new line. */ System.out.printf("%.1f\n", (d + d2)); /* Concatenate and print the String variables on a new line; the 's' variable above should be printed first. */ System.out.println(s + s2); scan.close(); } }
Forums:
비슷한 내용의 질문이 ...
https://hashcode.co.kr/questions/2064/nextxxx-메소드-후에-nextline-메소드를-사용했을-때의-scanner의-문제
위 링크의 내용에서도 담고 있지만 NextLine 이전에 nextInt나 nextDouble을 사용하셔서 그렇습니다. 자세한 내용은 링크 안의 질문 답변란을 보시길...
감사합니다.
https://stackoverflow.com/questions/13102045/scanner-is-skipping-nextline-after-using-next-or-nextfoo
에도 답이 있는데 이해가 안되서 질문드렸습니다.
감사합니다.
댓글 달기