Question

In: Computer Science

Write a program called Assignment3 (saved in a file Assignment3 .java) that asks a user to...

Write a program called Assignment3 (saved in a file Assignment3 .java) that asks a user to enter two strings.

First, the program prompts: Please enter a string.

The program should read in the string, and prompts: Please enter another string.

The program reads in two strings and it prints a menu to the user.

The program asks for user to enter an option and performs one of the following:

Here are the options on the menu:

Option a: checks if the length of the two strings are the same.

Option b: checks if two strings are same or different.

Option c: checks which string is lexically larger, or if they are same

Option d: prints out the first character (index 0) of each string

Option e: prints out a new string consisting of the first string concatenated (appended) with the second string.

Option f: prints out two strings using upper case letters.

Option q: quit the program.

Solutions

Expert Solution

// Please find the required solution

import java.util.Scanner;

// Assignment class performs string operations with menu
public class Assignment3 {
    public static void main(String[] args) {

        // instantiate scanner to read input from keyboard
        Scanner input = new Scanner(System.in);
        char option;

        // read string 1
        System.out.println("Enter String:");
        String s1 = input.nextLine();

        // read string 1
        System.out.println("Enter Another String:");
        String s2 = input.nextLine();

        // print menu as given in question
        System.out.println("-------Menu-------");
        System.out.println("Option a: checks if the length of the two strings are the same");
        System.out.println("Option b: checks if two strings are same or different");
        System.out.println("Option c: checks which string is lexically larger, or if they are same");
        System.out.println("Option d: prints out the first character (index 0) of each string");
        System.out.println("Option e: prints out a new string consisting of the first string concatenated (appended) with the second string");
        System.out.println("Option f: prints out two strings using upper case letters");
        System.out.println("Option q: quit the program");

        // perform above operations on string
        do {
            System.out.println("Enter the option:");
            option = input.nextLine().charAt(0);
            switch (option) {
                case 'a':
                    System.out.println("Two String Lengths are " + (s1.length() == s2.length() ? "same" : "different"));
                    break;
                case 'b':
                    System.out.println("Two strings are " + (s1.equals(s2) ? "same" : "different"));
                    break;
                case 'c':
                    int value = s1.compareTo(s2);
                    if (value == 0)
                        System.out.println("Two strings are Lexically same.");
                    else if (value > 0)
                        System.out.println(s1 + " is lexically larger");
                    else
                        System.out.println(s2 + " is lexically larger");
                    break;
                case 'd':
                    System.out.println("First characters :");
                    System.out.println(s1.charAt(0) + "  " + s2.charAt(0));
                    break;
                case 'e':
                    String newString = s1.concat(s2);
                    System.out.println(newString);
                    break;
                case 'f':
                    System.out.println("Upper case of s1:" + s1.toUpperCase());
                    System.out.println("Upper case of s2:" + s2.toUpperCase());
                    break;
                case 'q':
                    System.out.println("you have selected to quit:");
                    break;
                default:
                    System.out.println("Invalid option Selected please try again");
            }
        }
        while (option != 'q');


        input.close();
    }
}

sample screenshot:


Related Solutions

In a file called LengthSum.java, write a program that: - Asks the user to enter a...
In a file called LengthSum.java, write a program that: - Asks the user to enter a string. - Asks the user to enter a second string. - Prints out the length of the first string, the length of the second string, and the sum of the two lengths, using EXACTLY the same format as shown below. For example: if the user enters strings "UT" and "Arlington", your program output should look EXACTLY like this: Please enter a string: UT Please...
In a file called LengthSum.java, write a program that: Asks the user to enter a string....
In a file called LengthSum.java, write a program that: Asks the user to enter a string. Asks the user to enter a second string. Prints out the length of the first string, the length of the second string, and the sum of the two lengths, using EXACTLY the same format as shown below. For example: if the user enters strings "UT" and "Arlington", your program output should look EXACTLY like this: Please enter a string: UT Please enter a second...
In a file called Conversions.java, write a program that: Asks the user to enter a double...
In a file called Conversions.java, write a program that: Asks the user to enter a double number. Stores that number into a variable called z. Casts variable z into an integer, and stores the result into a variable called z1. Creates a variable z2, and sets it equal to the integer closest to z. Creates a variable z3, and sets it equal to the floor of z. Creates a variable z4, and sets it equal to the ceiling of z....
In a file called FourCapitalizations.java, write a program that: Asks the user to enter a string....
In a file called FourCapitalizations.java, write a program that: Asks the user to enter a string. Prints out four different versions of that string: The original version of the string. The upper-case version of the string. The lower-case version of the string. A version where the character at position 0 capitalized, and all other characters in lower case. For example: if the user enters string "gaNDalF12 !! AB3w", your program output should look EXACTLY like this: Please enter a string:...
In a file called NumbersToMonths.java, write a program that: Asks the user to specify a month...
In a file called NumbersToMonths.java, write a program that: Asks the user to specify a month as an integer between 1 and 12. It is OK for your program to crash when the user does not enter a valid integer. Prints out the name of the corresponding month. Prints out "This number does not correspond to a month." if the integer is less than 1 or greater than 12. For example: if the user enters 1, your program output should...
In a file called DivisibilityTests.java, write a program that: Asks the user to enter an integer....
In a file called DivisibilityTests.java, write a program that: Asks the user to enter an integer. It is OK for your program to crash when the user does not enter a valid integer. If the integer is less than 0, the program prints: "The number is negative." If the integer is divisible by 2 and by 3, the program prints: "The number is even and divisible by 3." If the integer is divisible by 2 but not by 3, the...
In a file called ThreeOperations.java, write a program that: Asks the user to enter two real...
In a file called ThreeOperations.java, write a program that: Asks the user to enter two real numbers (doubles, not integers) called N1 and N2. It is OK if your program crashes when the user does not enter valid double numbers. Computes and displays the following operations between the two: multiplication, division, exponentiation. For the results of these two operations, only two decimal digits should be displayed. For example: if the user enters numbers 11 and 7, your program output should...
Python: Write a program that asks the user for the name of a file. The program...
Python: Write a program that asks the user for the name of a file. The program should display the contents of the file line by line.
Write a program that asks the user to enter the name of a file, and then...
Write a program that asks the user to enter the name of a file, and then asks the user to enter a character. The program should count and display the number of times that the specified character appears in the file. Use Notepad or another text editor to create a sample file that can be used to test the program. Sample Run java FileLetterCounter Enter file name: wc4↵ Enter character to count: 0↵ The character '0' appears in the file...
Create a Java program that asks a user to enter two file names. The program will...
Create a Java program that asks a user to enter two file names. The program will read in two files and do a matrix multiplication. Check to make sure the files exist. first input is the name of the first file and it has 2 (length) 4 5 6 7 Second input is the name of the second file and it has 2 (length) 6 7 8 9 try catch method
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT