루프문

    023 - For Loops 5

    023 - For Loops 5

    Write a for loop that will loop through every letter of the input and print out just the vowels. Sample input/outputs In: howdyho out:oo In: huehuehuehue out:ueueueue In: poopoo what idk what im doing out:ooooaiaioi 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 import java.util.Scanner; class Main { public static void main(String[] args) { Scanner inp = new Scanner(System.in); System.out.print..