Question: Java Question: Given the sample code below, I will need to remove the vowels(upper case and lower case) from the string. import java.io.BufferedReader; import java.io.IOException;
Java Question:
Given the sample code below, I will need to remove the vowels(upper case and lower case) from the string.
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets;
public class Main { /** * Iterate through each line of input. */ public static void main(String[] args) throws IOException { InputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8); BufferedReader in = new BufferedReader(reader); String line; while ((line = in.readLine()) != null) { System.out.println(line); } } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
