JAVA Please read the directions
Suppose the user enters the following two lines of text:
17 10
Howdy Ho
and that I have made the following variable
declarations (and, in the case of sc,
an initialization):
Scanner sc = new Scanner(System.in);
int x, y;
String str;
Write code that will read 17 into x, 10 into y, and "Howdy Ho" into str.
JAVA Please read the directions Suppose the user enters the following two lines of text: 17...