-
-
Save codeforfun-jp/82e02c03ba9a1b0cfa915972efcdb73e to your computer and use it in GitHub Desktop.
QuizApp 4.1
This file contains 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
private int rightAnswerCount; | |
private int quizCount = 1; | |
ArrayList<ArrayList<String>> quizArray = new ArrayList<>(); | |
String[][] quizData = { | |
// {"都道府県名", "正解", "選択肢1", "選択肢2", "選択肢3"} | |
{"北海道", "札幌市", "長崎市", "福島市", "前橋市"}, | |
{"青森県", "青森市", "広島市", "甲府市", "岡山市"}, | |
{"岩手県", "盛岡市","大分市", "秋田市", "福岡市"}, | |
{"宮城県", "仙台市", "水戸市", "岐阜市", "福井市"}, | |
{"秋田県", "秋田市","横浜市", "鳥取市", "仙台市"}, | |
{"山形県", "山形市","青森市", "山口市", "奈良市"}, | |
{"福島県", "福島市", "盛岡市", "新宿区", "京都市"}, | |
{"茨城県", "水戸市", "金沢市", "名古屋市", "奈良市"}, | |
{"栃木県", "宇都宮市", "札幌市", "岡山市", "奈良市"}, | |
{"群馬県", "前橋市", "福岡市", "松江市", "福井市"}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment