Oktatás * Programozás 2 * Szkriptnyelvek * levelezősök Félévek Linkek * kalendárium |
Scala /
ASCII codes
Print the English alphabet in lowercase. Separate the letters with a space: scala> for (i <- 'a'.toInt to 'z'.toInt) print(i.toChar + " ") a b c d e f g h i j k l m n o p q r s t u v w x y z Or, even simpler: scala> for (c <- 'a' to 'z') print(c + " ") a b c d e f g h i j k l m n o p q r s t u v w x y z |
Blogjaim, hobbi projektjeim * The Ubuntu Incident [ edit ] |