मराठी

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

प्रश्न

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 

कोड लेखन

उत्तर

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 4: String Handling - EXERCISES [पृष्ठ २९०]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 4 String Handling
EXERCISES | Q IX. 12. | पृष्ठ २९०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×