Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can you please use loop to solve this question and add comment on each line please? Thank you. 2. Write down a program in Java,

Can you please use loop to solve this question and add comment on each line please? Thank you.

image text in transcribed
2. Write down a program in Java, which accepts two string inputs (string1 and string2) from the user. If the second string (string2) is present in first string (string1) (1.e., if the second string is a substring of first string), find out the number of times this string appears in the first string. Print the output saying " occurs 'n' times in " and print its last occurrence index. If second string (string2) is not a substring of first string (string1), then print " Not present in " CSE114: Introduction to Object Oriented Programming Summer 2020 Example: Enter first string: "Roger Federer" Enter second string: "er" Output: "er" occurs 3 times in "Roger Federer". Last occurrence is 11. Enter first string: "Roger Federer" Enter second string: "kl" Output: "kl" Not present in "Roger Federer"

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_2

Step: 3

blur-text-image_3

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions