Pangram

Run Settings
LanguageJava
Language Version
Run Command
import java.util.*; class Main { public static void main(String[] args) { String question = "We promptly judged antique ivory buckles for the next prize"; String toLower = question.toLowerCase(); boolean allLetterPresent = true; for(char ch = 'a'; ch <= 'z'; ch++){ if(!toLower.contains(String.valueOf(ch))){ allLetterPresent = false; } } if(allLetterPresent){ System.out.println("pangram"); }else{ System.out.println("not pangram"); } } }
Editor Settings
Theme
Key bindings
Full width
Lines