Given a String variable named line1 and given a Scanner reference variable stdin that has been assigned a reference to a Scanner object, read the next line from stdin and save it in line1. (Do not concern yourself with any possible exceptions here–assume they are handled elsewhere.)

LANGUAGE: JAVA

CHALLENGE:

Given a String variable named line1 and given a Scanner reference variable stdin that has been assigned a reference to a Scanner object, read the next line from stdin and save it in line1. (Do not concern yourself with any possible exceptions here–assume they are handled elsewhere.)

SOLUTION:

line1 = stdin.nextLine();