Write a program that starts with a line of text and then


Write a program that starts with a line of text and then outputs that line of text with the first occurrence of "hate" changed to "love". For example, a possible sample output might be:

The line of text to be changed is: I hate you.

I ha ve rephrased that line to read: I love you.

You can assume that the word "hate" occurs in the input. If the word "hate" occurs more than once in the line, your program will replace only the first occurrence of "hate". Since we will not discuss input until Chapter 2, use a defined constant for the string to be changed. To make your program work for another string, you should only need to change the definition of this defined constant.

DO NOT USE THE replace(), replaceAll(), nor replaceFirst() functions. Please look into using indexOf() and substring() functions.

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: Write a program that starts with a line of text and then
Reference No:- TGS02478188

Now Priced at $20 (50% Discount)

Recommended (96%)

Rated (4.8/5)