English

Consider the sentence as given below:  Blue bottle is in Blue bag lying on Blue carpet Write a program to assign the given sentence to a string variable. Replace the word Blue with Red at all its - Computer Applications

Advertisements
Advertisements

Question

Consider the sentence as given below:
Blue bottle is in Blue bag lying on Blue carpet

Write a program to assign the given sentence to a string variable. Replace the word Blue with Red at all its occurrences. Display the new string as shown below:
Red bottle is in Red bag lying on Red carpet 

Code Writing

Solution

import java.util.*;
public class SQ12
{public static void main(String b[])
{System.out.println("Enter the string containing the word blue");
Scanner sn = new Scanner(System.in);
String s = sn.nextLine();
s = s.toLowerCase();
String p = s.replace("blue", "red");
System.out.println(p);
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 4: String Handling - EXERCISES [Page 290]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 4 String Handling
EXERCISES | Q IX. 12. | Page 290
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×