Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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);
}
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Mike Morrison, Joline Morrison

1st Edition

061901556X, 978-0619015565

More Books

Students also viewed these Databases questions

Question

What are the purposes of promotion ?

Answered: 1 week ago