Created
November 3, 2018 13:38
-
-
Save AuroraNorthernQuarter/8fe8b719f8bbefaf50591c2e3bd0ad3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package testprogramm; | |
public class Language { | |
public Language() { | |
String hiragana[] = new String[10]; | |
String alphabet[] = new String[10]; | |
hiragana[0] = "あいうえお"; | |
hiragana[1] = "かきくけこ"; | |
hiragana[2] = "さしすせそ"; | |
hiragana[3] = "たちつてと"; | |
hiragana[4] = "なにぬねの"; | |
hiragana[5] = "はひふへほ"; | |
hiragana[6] = "まみむもめ"; | |
hiragana[7] = "やゐゆゑよ"; | |
hiragana[8] = "らりるれろ"; | |
hiragana[9] = "わゐうゑを"; | |
alphabet[0] = "ab"; | |
alphabet[1] = "cde"; | |
alphabet[2] = "fg"; | |
alphabet[3] = "hij"; | |
alphabet[4] = "klmn"; | |
alphabet[5] = "opqr"; | |
alphabet[6] = "st"; | |
alphabet[7] = "u"; | |
alphabet[8] = "vwx"; | |
alphabet[9] = "yz"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment