Zeek_Ch03_PractiseSet1.java

 

//Ask the user to input a string and replace the space in string with an underscore and print

package com.company;
import java.util.Scanner;
public class Zeek_Ch03_PractiseSet1 {
    public static void main(String[] args) {
        
        Scanner sc=new Scanner(System.in);
        
        System.out.println("Enter your string:");
        String strsc.nextLine();
        String str1str.replace(" ""_");
        
        System.out.println(str1);
    }
}


Comments

Popular posts from this blog

Zeek_31_MethodInJava.java