Question: Given string userlnput 1 on one line and string userlnput 2 on a second line, assign shorterString with the shorter string. If the strings are

Given string userlnput1 on one line and string userlnput2 on a second line, assign shorterString with the shorter string. If the strings are the same length, assign shorterString with "Same length".
Ex: If the input is:
cat
stories
then the output is:
cat
import java.util.scanner;
public class stringsize {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
String userInput1;
String userInput2;
string shorterstring;
user Input1= scnr. nextLine(();
userInput2= scnr. nextLine();
V** Your code goes here */
System.out.println(shorterstring);
}
 Given string userlnput1 on one line and string userlnput2 on a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!