Skip to content

Instantly share code, notes, and snippets.

@laurocaetano
laurocaetano / deleteVowels.java
Last active September 26, 2017 09:22 — forked from princessofpain/deleteVowels
exercise in Java to delete all vowels in a typed string
package uebung07;
import javax.swing.JOptionPane;
public class Vokalloescher {
static String eingabe = JOptionPane.showInputDialog("Geben Sie einen Text ein:");
static String klein = eingabe.toLowerCase();
public static boolean istEinVokal(char ch){
switch(ch){