Mercurial > hgrepos > hgweb.cgi > skipweb
changeset 671:f6c6dfc5caab
Merged
author | MURAKAMI Masaki <c112124@h.koeki-u.ac.jp> |
---|---|
date | Tue, 24 Feb 2015 16:55:03 +0900 |
parents | ddbe3a162d50 (current diff) 12f86e86a07f (diff) |
children | 949adaae9f1b |
files | |
diffstat | 46 files changed, 4469 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/fujix/leaf.rb Tue Feb 24 16:54:16 2015 +0900 +++ b/fujix/leaf.rb Tue Feb 24 16:55:03 2015 +0900 @@ -74,7 +74,7 @@ end else bun = "boo" - sql = "update main set name=?,lon=?,lat=?,where id=?" + sql = "update main set name=?,lon=?,lat=? where id=?" begin db.execute(sql,name,lon,lat,id) rescue @@ -103,6 +103,9 @@ padding: 0; margin: 0; } + form{ + font-size:5mm; + } </style> <title>Getting Started with Leaflet</title> <meta http-equiv="refresh" content="20;redirect.html"> @@ -110,8 +113,8 @@ <body> <form method="POST" action="./leaf.rb?%f+%f"> <input name="v_radio" type="radio" value="1">順調 -<input name="v_radio" type="radio" value="2">ほげ -<input name="v_radio" type="radio" value="3">げほ +<input name="v_radio" type="radio" value="2">トラブル +<input name="v_radio" type="radio" value="3">ヘルプ <input type="submit" value="OK"> </form> <div id="map"></div>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/.htaccess Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,3 @@ +AddHandler cgi-script .rb +Options +ExecCGI +AddType "text/html; charset=euc-jp" .html .rb \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/.htaccess~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,3 @@ +AddHandler cgi-script .rb +Options +ExecCGI +AddType "text/html; charset=utf-8" .html .rb \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/add.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,25 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> +<title>桼Ͽ</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>Ͽ</h1> +<div class="center01"> +<div> +<h2>ϤϿܥƤ</h2> +<form method="POST" action="add.rb"> +<p> +<span>ID:</span><input type="text" name="id"><br> +<span>PASS:</span><input type="password" name="pass"><br> +<span>̾:</span><input type="text" name="name"><br> +<span>:</span><input type="radio" name="sex" value="man"><br> +<span></span><input type="radio" name="sex" value="woman"></p> +<button class="css3button" type="submit" name="Battle" value="1">Ͽ</button> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/add.html~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,25 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>ユーザー登録</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>新規登録</h1> +<div class="center01"> +<div> +<h2>入力したら登録ボタンを押してください</h2> +<form method="POST" action="add.rb"> +<p> +<span>ID:</span><input type="text" name="id"><br> +<span>PASS:</span><input type="password" name="pass"><br> +<span>名前:</span><input type="text" name="name"><br> +<span>性別:</span><input type="radio" name="sex" value="man">男<br> +<span></span><input type="radio" name="sex" value="woman">女</p> +<button class="css3button" type="submit" name="Battle" value="1">登録</button> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/add.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,48 @@ +#!/usr/bin/env ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "euc-jp") +print"Content-type: text/html; charset=euc-jp\n\n" + +number = c["id"] +pswd = c["pass"] +namae = c["name"] +sx = c["sex"] +check = 0 + +begin + conn = PGconn.connect('broy.e.koeki-u.ac.jp','','','','c112085','mackeyacademy','l3nl3q1u') + a = "select id from userdata" + ip = conn.exec(a) + ip.each do |row| + if number == row["id"] + check = 1 + end + end + if check == 0 + q = "insert into userdata (id, password, name, sex, level, exp, quest) values ('#{number}', '#{pswd}', '#{namae}', '#{sx}', '1', '0', '0')" + export = conn.exec(q) + end +end +print"<html> +<head> +<meta http-equiv=\"Content-Type\" content=\"text/html; charset=euc-jp\"> +<title>桼Ͽ</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body>\n" +if check == 0 + print"<h1>Ͽλ</h1> +<a href=\"login.html\"> +<button class=\"css3button\"></button>\n" +elsif check == 1 + print"<h1>Error</h1> +<p>IDȤƤޤ</p> +<a href=\"add.html\"> +<button class=\"css3button\">⤦</button>\n" +end +print"</a> +</body> +</html>\n"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/add.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,48 @@ +#!/usr/bin/env ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"Content-type: text/html; charset=utf-8\n\n" + +number = c["id"] +pswd = c["pass"] +namae = c["name"] +sx = c["sex"] +check = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + a = "select id from userdata" + ip = conn.exec(a) + ip.each do |row| + if number == row["id"] + check = 1 + end + end + if check == 0 + q = "insert into userdata (id, password, name, sex, level, exp, quest) values ('#{number}', '#{pswd}', '#{namae}', '#{sx}', '1', '0', '0')" + export = conn.exec(q) + end +end +print"<html> +<head> +<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"> +<title>桼Ͽ</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body>\n" +if check == 0 + print"<h1>Ͽλ</h1> +<a href=\"login.html\"> +<button class=\"css3button\"></button>\n" +elsif check == 1 + print"<h1>Error</h1> +<p>IDȤƤޤ</p> +<a href=\"add.html\"> +<button class=\"css3button\">⤦</button>\n" +end +print"</a> +</body> +</html>\n"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/ans.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,77 @@ +#!/usr/bin/ruby +# coding: utf-8 + +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print "Content-type: text/html; charset=utf-8\n\n" + +check = c["answer"] +quiznum = c["dat"] + +srand +number=rand(1060) +num = 0 +damage = "" +quiz = "" +ansone = "" +anstwo = "" +ansthi = "" +ansfou = "" +anstrue = "" +open("data.txt", "r:utf-8") do |list| + while line = list.gets + if /(\d+),(\S+),(\S+),(\S+),(\S+),(\S+),(\d)/ =~ line + if quiznum.to_i == $1.to_i + if check.to_i == $7.to_i + damage = "攻撃成功!" + else + damage = "攻撃失敗!" + end + end + if number.to_i == $1.to_i + num = $1.to_i + quiz = $2.to_s + ansone = $3.to_s + anstwo = $4.to_s + ansthi = $5.to_s + ansfou = $6.to_s + anstrue = $7.to_i + end + end + end +end + + + +printf("<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<h2>#{damage}</h2> +<p>No.#{number}</p> +<div class=\"main\"> +<div> +<img border=\"1\" src=\"maou.png\" width=\"480\" height=\"320\" +alt=\"まおうのがぞうっぽいよ\" title=\"まおう\"> + +<h2>問題</h2> +<p>%s</p> + +<form method=\"POST\" action=\"ans.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"1\">%s</bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"2\">%s</bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"3\">%s<br></bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"4\">%s<br></bu\ +tton> +<input type=\"hidden\" name=\"dat\" value=\"%d\"> +</form> +</div> +</div> +</body> +</html>", quiz, ansone, anstwo, ansthi, ansfou, num)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/battle.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,21 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> +<title>ƥȥ</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>ƥȥ</h1> +<div class="center01"> +<div> +<img border="1" src="forest.jpg" width="480" height="320" +alt="ط" title="ط"> +<h2>õ褦</h2> +<form method="POST" action="battle.rb"> +<button class="css3button" type="submit" name="Battle" value="1">Start</button> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/battle.html~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,21 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>テストクエスト</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>テストクエスト</h1> +<div class="center01"> +<div> +<img border="1" src="forest.jpg" width="480" height="320" +alt="背景" title="背景"> +<h2>探索しよう!</h2> +<form method="POST" action="battle.rb"> +<button class="css3button" type="submit" name="Battle" value="1">Start</button> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/battle.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,100 @@ +#!/usr/bin/env ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "euc-jp") +print"ontent-type: text/html; charset=euc-jp\n\n" + +tai = c["hp"] +dhp = c["defohp"] +tekihp = c["thp"] +ct = c["count"] +nn = c["namae"] +lvl = c["level"] +idnum = c["id"] +ep = c["exp"] +cou = ct +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 + +begin + conn = PGconn.connect('broy.e.koeki-u.ac.jp','','','','c112085','mackeyacademy','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +srand +number = rand(x) +check = rand(4) + +printf("<html> +<head> +<title>ߤΤ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>ߤΤ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>ƤHP #{tekihp} / #{tekihp} +<img border=\"1\" src=\"battle.jpg\" width=\"480\" height=\"320\" +alt=\"ط\" title=\"ط\"> +<h1>:#{tai} / #{dhp} +<h2></h2> +<p>%s</p> + +<form method=\"POST\" action=\"battle2.rb\">\n", quest[number]) + +if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" +elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" +elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" +elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button>\n" +end +printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{tai}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tekihp}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{dhp}\"> +<input type=\"hidden\" name=\"defothp\" value=\"#{tekihp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{nn}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +<input type=\"hidden\" name=\"count\" value=\"#{cou}\"> +</form> +</div> +</div> +</body> +</html>\n", wordone[number])
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/battle.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,100 @@ +#!/usr/bin/ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"ontent-type: text/html; charset=utf-8\n\n" + +tai = c["hp"] +dhp = c["defohp"] +tekihp = c["thp"] +ct = c["count"] +nn = c["namae"] +lvl = c["level"] +idnum = c["id"] +ep = c["exp"] +cou = ct +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +srand +number = rand(x) +check = rand(4) + +printf("<html> +<head> +<title>ߤΤ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>ߤΤ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>ƤHP #{tekihp} / #{tekihp} +<img border=\"1\" src=\"battle.jpg\" width=\"480\" height=\"320\" +alt=\"ط\" title=\"ط\"> +<h1>:#{tai} / #{dhp} +<h2></h2> +<p>%s</p> + +<form method=\"POST\" action=\"battle2.rb\">\n", quest[number]) + +if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" +elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" +elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" +elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button>\n" +end +printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{tai}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tekihp}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{dhp}\"> +<input type=\"hidden\" name=\"defothp\" value=\"#{tekihp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{nn}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +<input type=\"hidden\" name=\"count\" value=\"#{cou}\"> +</form> +</div> +</div> +</body> +</html>\n", wordone[number])
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/battle2.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,206 @@ +#!/usr/bin/env ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "euc-jp") +print"ontent-type: text/html; charset=euc-jp\n\n" + +kaito = c["answer"] +ans = c["dat"] +ber = c["num"] +tai = c["hp"] +tekihp = c["thp"] +dthp = c["defothp"] +dhp = c["defohp"] +nn = c["namae"] +lvl = c["level"] +ep = c["exp"] +idnum = c["id"] +sum = tai.to_i +tsum = tekihp.to_i +nb = ber.to_i +cu = c["count"] +cou = cu.to_i +ct = cou + 1 +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 +y = 0 + +begin + conn = PGconn.connect('broy.e.koeki-u.ac.jp','','','','c112085','mackeyacademy','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +if ans.to_s == kaito.to_s + srand + attack = rand(90) + 10 + tsum -= attack +else + srand + tekiat = rand(20) + 5 + sum -= tekiat +end + +if tsum >= 0 && sum >= 0 + + srand + number = rand(x) + srand + check = rand(4) + + print"<html> +<head> +<title>ߤΤ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>ߤΤ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>ƤHP #{tsum} / #{dthp}</h1> + +<img border=\"1\" src=\"" + + if ans.to_s == kaito.to_s + print"atack.gif" + else + print"damage.gif" + end +print"\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\">\n" + + + if ans.to_s == kaito.to_s + print"<h1>!</h1>\n" + else + print"<h1>⼺</h1>\n" + end + printf("<h1>:#{sum} / #{dhp} +<h2></h2> +<p>%s</p> +<form method=\"POST\" action=\"battle2.rb\">\n", quest[number]) + + if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" + elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" + elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" + elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button>\n" + end + printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tsum}\"> +<input type=\"hidden\" name=\"count\" value=\"#{cou}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{dhp}\"> +<input type=\"hidden\" name=\"defothp\" value=\"#{dthp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{nn}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +</form> +</div> +</body> +</html>\n", wordone[number]) + +elsif tsum <= 0 && sum > 0 + if ct == 4 + print"<html> +<head> +<title>ɥ饴!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>ɥ饴!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\"> +<h1>!</h1> +<h1>:#{sum} / #{dhp}</h1> +<h2>õλ</h2>" +#<form method=\"POST\" action=\"boss.rb\"> +#<button class=\"css3button\" type=\"submit\" name=\"Battle\" value=\"1\">Start</button> +#<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"><input type=\"hidden\" name=\"thp\" value=\"500\"> +#<input type=\"hidden\" name=\"count\" value=\"#{ct}\"> +#</form> +print"</div> +</body> +</html>\n" + + else + print"<html> +<head> +<title>ɥ饴!</title> <link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> </head> <body> <h1>ɥ饴!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\"> +<h1>!</h1> +<h1>:#{sum} / #{dhp}</h1> +<h2>õ³褦!</h2> +<form method=\"POST\" action=\"battle.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"Battle\" value=\"1\">Start</button> +<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{dthp}\"> +<input type=\"hidden\" name=\"count\" value=\"#{ct}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{dhp}\"> +<input type=\"hidden\" name=\"defothp\" value=\"#{dthp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{nn}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +</form> +</div> +</body> +</html>\n" + end +else + print"<html><head><title>餱Ƥޤä</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>餱Ƥޤä</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\"> +<h1>:0 / #{dhp}</h1> +<h2>⤦õ!</h2> +<form method=\"POST\" action=\"login.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"Battle\" value=\"1\">Start</button> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +</form> + +</a> +</div> +</body> +</html>\n" +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/battle2.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,206 @@ +#!/usr/bin/ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"ontent-type: text/html; charset=utf-8\n\n" + +kaito = c["answer"] +ans = c["dat"] +ber = c["num"] +tai = c["hp"] +tekihp = c["thp"] +dthp = c["defothp"] +dhp = c["defohp"] +nn = c["namae"] +lvl = c["level"] +ep = c["exp"] +idnum = c["id"] +sum = tai.to_i +tsum = tekihp.to_i +nb = ber.to_i +cu = c["count"] +cou = cu.to_i +ct = cou + 1 +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 +y = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +if ans.to_s == kaito.to_s + srand + attack = rand(90) + 10 + tsum -= attack +else + srand + tekiat = rand(20) + 5 + sum -= tekiat +end + +if tsum >= 0 && sum >= 0 + + srand + number = rand(x) + srand + check = rand(4) + + print"<html> +<head> +<title>ߤΤ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>ߤΤ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>ƤHP #{tsum} / #{dthp}</h1> + +<img border=\"1\" src=\"" + + if ans.to_s == kaito.to_s + print"atack.gif" + else + print"damage.gif" + end +print"\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\">\n" + + + if ans.to_s == kaito.to_s + print"<h1>!</h1>\n" + else + print"<h1>⼺</h1>\n" + end + printf("<h1>:#{sum} / #{dhp} +<h2></h2> +<p>%s</p> +<form method=\"POST\" action=\"battle2.rb\">\n", quest[number]) + + if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" + elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" + elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" + elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button>\n" + end + printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tsum}\"> +<input type=\"hidden\" name=\"count\" value=\"#{cou}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{dhp}\"> +<input type=\"hidden\" name=\"defothp\" value=\"#{dthp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{nn}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +</form> +</div> +</body> +</html>\n", wordone[number]) + +elsif tsum <= 0 && sum > 0 + if ct == 3 + print"<html> +<head> +<title>ɥ饴!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>ɥ饴!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\"> +<h1>!</h1> +<h1>:#{sum} / #{dhp}</h1> +<h2>õλ</h2>" +#<form method=\"POST\" action=\"boss.rb\"> +#<button class=\"css3button\" type=\"submit\" name=\"Battle\" value=\"1\">Start</button> +#<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"><input type=\"hidden\" name=\"thp\" value=\"500\"> +#<input type=\"hidden\" name=\"count\" value=\"#{ct}\"> +#</form> +print"</div> +</body> +</html>\n" + + else + print"<html> +<head> +<title>ɥ饴!</title> <link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> </head> <body> <h1>ɥ饴!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\"> +<h1>!</h1> +<h1>:#{sum} / #{dhp}</h1> +<h2>õ³褦!</h2> +<form method=\"POST\" action=\"battle.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"Battle\" value=\"1\">Start</button> +<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{dthp}\"> +<input type=\"hidden\" name=\"count\" value=\"#{ct}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{dhp}\"> +<input type=\"hidden\" name=\"defothp\" value=\"#{dthp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{nn}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +</form> +</div> +</body> +</html>\n" + end +else + print"<html><head><title>餱Ƥޤä</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>餱Ƥޤä</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"ط\" title=\"ط\"> +<h1>:#{sum} / #{dhp}</h1> +<h2>⤦õ!</h2> +<form method=\"POST\" action=\"login.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"Battle\" value=\"1\">Start</button> +<input type=\"hidden\" name=\"id\" value=\"#{idnum}\"> +</form> + +</a> +</div> +</body> +</html>\n" +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/boss.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,91 @@ +#!/usr/bin/ruby +# coding: utf-8 +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"ontent-type: text/html; charset=utf-8\n\n" + +tai = c["hp"] +dh = c["defohp"] +tekihp = c["thp"] +nn = c["namae"] +lvl = c["level"] +number = c["id"] +ep = c["exp"] +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +srand +number = rand(x) +check = rand(4) + +printf("<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>BOSS HP #{tekihp} / 500 +<img border=\"1\" src=\"boss.jpg\" width=\"480\" height=\"320\" +alt=\"背景\" title=\"背景\"> +<h1>体力: #{tai} / 999 +<h2>問題</h2> +<p>%s</p> + +<form method=\"POST\" action=\"boss2.rb\">\n", quest[number]) + +if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" +elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" +elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" +elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button>\n" +end +printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{tai}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tekihp}\"> +</form> +</div> +</div> +</body> +</html>\n", wordone[number])
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/boss.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,90 @@ +#!/usr/bin/ruby +# coding: utf-8 +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"ontent-type: text/html; charset=utf-8\n\n" + +tai = c["hp"] +tekihp = c["thp"] +nn = c["namae"] +lvl = c["level"] +number = c["id"] +ep = c["exp"] +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +srand +number = rand(x) +check = rand(4) + +printf("<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>BOSS HP #{tekihp} / 500 +<img border=\"1\" src=\"boss.jpg\" width=\"480\" height=\"320\" +alt=\"背景\" title=\"背景\"> +<h1>体力: #{tai} / 999 +<h2>問題</h2> +<p>%s</p> + +<form method=\"POST\" action=\"boss2.rb\">\n", quest[number]) + +if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" +elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" +elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" +elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button>\n" +end +printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{tai}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tekihp}\"> +</form> +</div> +</div> +</body> +</html>\n", wordone[number])
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/boss2.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,154 @@ +#!/usr/bin/ruby +# coding: utf-8 +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"ontent-type: text/html; charset=utf-8\n\n" + +kaito = c["answer"] +ans = c["dat"] +ber = c["num"] +tai = c["hp"] +tekihp = c["thp"] +sum = tai.to_i +tsum = tekihp.to_i +nb = ber.to_i +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 +y = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +if ans.to_s == kaito.to_s + srand + attack = rand(90) + 100 + tsum -= attack +else + srand + tekiat = rand(60) + 60 + sum -= tekiat +end + +if tsum >= 0 && sum >= 0 + + srand + number = rand(x) + srand + check = rand(4) + + print"<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>BOSS HP #{tsum} / 500</h1> +<img border=\"1\" src=\"boss.jpg\" width=\"480\" height=\"320\" alt=\"背景\" title=\"背景\">\n" + + if ans.to_s == kaito.to_s + print"<h1>攻撃成功!</h1>\n" + else + print"<h1>攻撃失敗</h1>\n" + end + + printf("<h1>体力: #{sum} / 999 +<h2>問題</h2> +<p>%s</p> +<form method=\"POST\" action=\"boss2.rb\">\n", quest[number]) + + if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" + elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" + elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" + elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button>\n" + end + printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tsum}\"> +</form> +</div> +</div> +</body> +</html>\n", wordone[number]) + +elsif tsum <= 0 && sum > 0 + print"<html> +<head> +<title>BOSSをたおした!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>BOSSをたおした!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"背景\" title=\"背景\"> +<h1>攻撃成功!</h1> +<h1>体力: #{sum} / 999</h1> +<h2>探索完了!</h2> +<a href=\"quest.html\"> +<button class=\"css3button\">Start</button> +</a> +</div> +</body> +</html>\n" +else + print"<html> +<head> +<title>BOSSをたおした!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>BOSSをたおした!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"背景\" title=\"\\ +背景\"> +<h1>体力: #{sum} / 999</h1> +<h2>もう一度探索!</h2> +<a href=\"quest.html\"> +<button class=\"css3button\">Start</button> +</a> +</div> +</body> +</html>\n" + +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/boss2.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,154 @@ +#!/usr/bin/ruby +# coding: utf-8 +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"ontent-type: text/html; charset=utf-8\n\n" + +kaito = c["answer"] +ans = c["dat"] +ber = c["num"] +tai = c["hp"] +tekihp = c["thp"] +sum = tai.to_i +tsum = tekihp.to_i +nb = ber.to_i +quest = [] +wordone = [] +wordtwo = [] +wordthi = [] +wordfou = [] +subject = [] +x = 0 +y = 0 + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + quest << row["question"].to_s + wordone << row["word1"].to_s + wordtwo << row["word2"].to_s + wordthi << row["word3"].to_s + wordfou << row["word4"].to_s + x += 1 + end +end + +if ans.to_s == kaito.to_s + srand + attack = rand(90) + 100 + tsum -= attack +else + srand + tekiat = rand(60) + 60 + sum -= tekiat +end + +if tsum >= 0 && sum >= 0 + + srand + number = rand(x) + srand + check = rand(4) + + print"<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<p>No.#{number}</p> +<div class=\"center01\"> +<div> +<h1>BOSS HP #{tsum} / 500</h1> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"背景\" title=\"背景\">\n" + + if ans.to_s == kaito.to_s + print"<h1>攻撃成功!</h1>\n" + else + print"<h1>攻撃失敗</h1>\n" + end + + printf("<h1>体力: #{sum} / 999 +<h2>問題</h2> +<p>%s</p> +<form method=\"POST\" action=\"boss2.rb\">\n", quest[number]) + + if check == 0 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></bu\ +tton>\n" + elsif check == 1 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}<br></button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}<br></button>\n" + elsif check == 2 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button>\n" + elsif check == 3 + print"<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordfou[number]}\">#{wordfou[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordthi[number]}\">#{wordthi[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordtwo[number]}\">#{wordtwo[number]}</button> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"#{wordone[number]}\">#{wordone[number]}</button>\n" + end + printf("<input type=\"hidden\" name=\"dat\" value=\"%s\"> +<input type=\"hidden\" name=\"num\" value=\"#{number}\"> +<input type=\"hidden\" name=\"hp\" value=\"#{sum}\"> +<input type=\"hidden\" name=\"thp\" value=\"#{tsum}\"> +</form> +</div> +</div> +</body> +</html>\n", wordone[number]) + +elsif tsum <= 0 && sum > 0 + print"<html> +<head> +<title>BOSSをたおした!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>BOSSをたおした!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"背景\" title=\"背景\"> +<h1>攻撃成功!</h1> +<h1>体力: #{sum} / 999</h1> +<h2>探索完了!</h2> +<a href=\"quest.html\"> +<button class=\"css3button\">Start</button> +</a> +</div> +</body> +</html>\n" +else + print"<html> +<head> +<title>BOSSをたおした!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>BOSSをたおした!</h1> +<div class=\"center01\"> +<div> +<img border=\"1\" src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"背景\" title=\"\\ +背景\"> +<h1>体力: #{sum} / 999</h1> +<h2>もう一度探索!</h2> +<a href=\"quest.html\"> +<button class=\"css3button\">Start</button> +</a> +</div> +</body> +</html>\n" + +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/damage.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,19 @@ +#!/usr/bin/ruby +# coding: utf-8 +def damage() + srand + check = rand(4) + if check == 0 + point = 100 + point + elsif check == 1 + point = 126 + point + elsif check == 2 + point = 87 + point + elsif check == 3 + point == 199 + point + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/data.txt Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,2063 @@ +0,1+1=?,1,2,3,4,2 +1,日本<=なんと読む?,いっぽん,にほん,さんほん,よんほん,2 +2,選択肢の中で仲間はずれは?,イワシ,クロマグロ,サンマ,タカミダイ,4 +3,水の化学式H2Oの1molあたりの量は?,16,17,18,19,3 +4,「水兵リーベ僕の船」の兵は何を示している?,水素,リチウム,ヘリウム,ベリ +リウム,2 +5,群馬県の県庁所在地は?,高崎市,桐生市,群馬市,前橋市,4 +6,福岡県の県庁所在地は?,博多市,福岡市,小倉市,酒田市,2 +7,人は生物学上何に分類される?,霊長類,魚類,鳥類,哺乳類,4 +8,「忄」は何へん?,りっしんべん,のぎへん,しめすへん,にんべん,1 +9,「胡座」なんと読む?,ござ,あぐら,あくび,ぎょうざ,2 +10,角度30度の時、1/2なのはどれ?,sin,cos,tan,どれでもない,1 +11,三角形の比率で存在するのは3:4::?,5,6,7,8,1 +12,ギターの英語のスペルは?,gitar,guiter,guitar,giter,3 +13,北海道の県庁所在地は?,札幌市,青森市,盛岡市,仙台市,1 +14,青森県の県庁所在地は?,青森市,盛岡市,仙台市,秋田市,1 +15,岩手県の県庁所在地は?,盛岡市,仙台市,秋田市,山形市,1 +16,宮城県の県庁所在地は?,仙台市,秋田市,山形市,福島市,1 +17,秋田県の県庁所在地は?,秋田市,山形市,福島市,水戸市,1 +18,山形県の県庁所在地は?,山形市,福島市,水戸市,宇都宮市,1 +19,福島県の県庁所在地は?,福島市,水戸市,宇都宮市,前橋市,1 +20,茨城県の県庁所在地は?,水戸市,宇都宮市,前橋市,さいたま市,1 +21,栃木県の県庁所在地は?,宇都宮市,前橋市,さいたま市,千葉市,1 +22,群馬県の県庁所在地は?,前橋市,さいたま市,千葉市,東京,1 +23,埼玉県の県庁所在地は?,さいたま市,千葉市,東京,横浜市,1 +24,千葉県の県庁所在地は?,千葉市,東京,横浜市,新潟,1 +25,東京都の県庁所在地は?,東京,横浜市,新潟,富山市,1 +26,神奈川県の県庁所在地は?,横浜市,新潟,富山市,金沢市,1 +27,新潟県の県庁所在地は?,新潟,富山市,金沢市,福井市,1 +28,富山県の県庁所在地は?,富山市,金沢市,福井市,甲府市,1 +29,石川県の県庁所在地は?,金沢市,福井市,甲府市,長野市,1 +30,福井県の県庁所在地は?,福井市,甲府市,長野市,岐阜市,1 +31,山梨県の県庁所在地は?,甲府市,長野市,岐阜市,静岡市,1 +32,長野県の県庁所在地は?,長野市,岐阜市,静岡市,名古屋市,1 +33,岐阜県の県庁所在地は?,岐阜市,静岡市,名古屋市,津市,1 +34,静岡県の県庁所在地は?,静岡市,名古屋市,津市,大津市,1 +35,愛知県の県庁所在地は?,名古屋市,津市,大津市,京都市,1 +36,三重県の県庁所在地は?,津市,大津市,京都市,大阪市,1 +37,滋賀県の県庁所在地は?,大津市,京都市,大阪市,神戸市,1 +38,京都府の県庁所在地は?,京都市,大阪市,神戸市,奈良市,1 +39,大阪府の県庁所在地は?,大阪市,神戸市,奈良市,和歌山市,1 +40,兵庫県の県庁所在地は?,神戸市,奈良市,和歌山市,鳥取市,1 +41,奈良県の県庁所在地は?,奈良市,和歌山市,鳥取市,松江市,1 +42,和歌山県の県庁所在地は?,和歌山市,鳥取市,松江市,岡山市,1 +43,鳥取県の県庁所在地は?,鳥取市,松江市,岡山市,広島市,1 +44,島根県の県庁所在地は?,松江市,岡山市,広島市,山口市,1 +45,岡山県の県庁所在地は?,岡山市,広島市,山口市,徳島市,1 +46,広島県の県庁所在地は?,広島市,山口市,徳島市,高松市,1 +47,山口県の県庁所在地は?,山口市,徳島市,高松市,松山市,1 +48,徳島県の県庁所在地は?,徳島市,高松市,松山市,高知市,1 +49,香川県の県庁所在地は?,高松市,松山市,高知市,福岡市,1 +50,愛媛県の県庁所在地は?,松山市,高知市,福岡市,佐賀市,1 +51,高知県の県庁所在地は?,高知市,福岡市,佐賀市,長崎市,1 +52,福岡県の県庁所在地は?,福岡市,佐賀市,長崎市,熊本市,1 +53,佐賀県の県庁所在地は?,佐賀市,長崎市,熊本市,大分市,1 +54,長崎県の県庁所在地は?,長崎市,熊本市,大分市,宮崎市,1 +55,熊本県の県庁所在地は?,熊本市,大分市,宮崎市,鹿児島市1 +56,大分県の県庁所在地は?,大分市,宮崎市,鹿児島市,那覇市,1 +57,宮崎県の県庁所在地は?,宮崎市,鹿児島市,那覇市,福岡市,1 +58,鹿児島県の県庁所在地は?,鹿児島市,宮崎市,大分市,熊本市,1 +59,沖縄県の県庁所在地は?,那覇市,鹿児島市,宮崎市,大分市,1 +60,1年生の漢字[子]の読みは?,こ,おう,き,そら,1 +61,1年生の漢字[一]の読みは?,いち,おと,きゅう,つき,1 +62,1年生の漢字[右]の読みは?,みぎ,した,きゅう,いぬ,1 +63,1年生の漢字[雨]の読みは?,あめ,はな,たま,けん,1 +64,1年生の漢字[円]の読みは?,えん,がく,きん,ご,1 +65,1年生の漢字[王]の読みは?,おう,き,そら,くち,1 +66,1年生の漢字[音]の読みは?,おと,きゅう,つき,こう,1 +67,1年生の漢字[下]の読みは?,した,きゅう,いぬ,ひだり,1 +68,1年生の漢字[花]の読みは?,はな,たま,けん,さん,1 +69,1年生の漢字[学]の読みは?,がく,きん,ご,やま,1 +70,1年生の漢字[気]の読みは?,き,そら,くち,よん,1 +71,1年生の漢字[九]の読みは?,きゅう,つき,こう,いと,1 +72,1年生の漢字[休]の読みは?,きゅう,いぬ,ひだり,じ,1 +73,1年生の漢字[玉]の読みは?,たま,けん,さん,みみ,1 +74,1年生の漢字[金]の読みは?,きん,ご,やま,なな,1 +75,1年生の漢字[空]の読みは?,そら,くち,よん,くるま,1 +76,1年生の漢字[月]の読みは?,つき,こう,いと,て,1 +77,1年生の漢字[犬]の読みは?,いぬ,ひだり,じ,じゅう,1 +78,1年生の漢字[見]の読みは?,けん,さん,みみ,しゅつ,1 +79,1年生の漢字[五]の読みは?,ご,やま,なな,おんな,1 +80,1年生の漢字[口]の読みは?,くち,よん,くるま,しょう,1 +81,1年生の漢字[校]の読みは?,こう,いと,て,うえ,1 +82,1年生の漢字[左]の読みは?,ひだり,じ,じゅう,もり,1 +83,1年生の漢字[三]の読みは?,さん,みみ,しゅつ,ひと,1 +84,1年生の漢字[山]の読みは?,やま,なな,おんな,みず,1 +85,1年生の漢字[四]の読みは?,よん,くるま,しょう,しょう,1 +86,1年生の漢字[糸]の読みは?,いと,て,うえ,しょう,1 +87,1年生の漢字[字]の読みは?,じ,じゅう,もり,あお,1 +88,1年生の漢字[耳]の読みは?,みみ,しゅつ,ひと,ゆう,1 +89,1年生の漢字[七]の読みは?,なな,おんな,みず,いし,1 +90,1年生の漢字[車]の読みは?,くるま,しょう,しょう,あか,1 +91,1年生の漢字[手]の読みは?,て,うえ,しょう,せん,1 +92,1年生の漢字[十]の読みは?,じゅう,もり,あお,かわ,1 +93,1年生の漢字[出]の読みは?,しゅつ,ひと,ゆう,さき,1 +94,1年生の漢字[女]の読みは?,おんな,みず,いし,そう,1 +95,1年生の漢字[小]の読みは?,しょう,しょう,あか,そう,1 +96,1年生の漢字[上]の読みは?,うえ,しょう,せん,あし,1 +97,1年生の漢字[森]の読みは?,もり,あお,かわ,むら,1 +98,1年生の漢字[人]の読みは?,ひと,ゆう,さき,だい,1 +99,1年生の漢字[水]の読みは?,みず,いし,そう,おとこ,1 +100,1年生の漢字[正]の読みは?,しょう,あか,そう,たけ,1 +101,1年生の漢字[生]の読みは?,しょう,せん,あし,ちゅう,1 +102,1年生の漢字[青]の読みは?,あお,かわ,むら,むし,1 +103,1年生の漢字[夕]の読みは?,ゆう,さき,だい,まち,1 +104,1年生の漢字[石]の読みは?,いし,そう,おとこ,てん,1 +105,1年生の漢字[赤]の読みは?,あか,そう,たけ,た,1 +106,1年生の漢字[千]の読みは?,せん,あし,ちゅう,つち,1 +107,1年生の漢字[川]の読みは?,かわ,むら,むし,に,1 +108,1年生の漢字[先]の読みは?,さき,だい,まち,にち,1 +109,1年生の漢字[早]の読みは?,そう,おとこ,てん,にゅう,1 +110,1年生の漢字[草]の読みは?,そう,たけ,た,とし,1 +111,1年生の漢字[足]の読みは?,あし,ちゅう,つち,しろ,1 +112,1年生の漢字[村]の読みは?,むら,むし,に,はち,1 +113,1年生の漢字[大]の読みは?,だい,まち,にち,ひゃく,1 +114,1年生の漢字[男]の読みは?,おとこ,てん,にゅう,ぶん,1 +115,1年生の漢字[竹]の読みは?,たけ,た,とし,き,1 +116,1年生の漢字[中]の読みは?,ちゅう,つち,しろ,ほん,1 +117,1年生の漢字[虫]の読みは?,むし,に,はち,めい,1 +118,1年生の漢字[町]の読みは?,まち,にち,ひゃく,め,1 +119,1年生の漢字[天]の読みは?,てん,にゅう,ぶん,りつ,1 +120,1年生の漢字[田]の読みは?,た,とし,き,ちから,1 +121,1年生の漢字[土]の読みは?,つち,しろ,ほん,はやし,1 +122,1年生の漢字[二]の読みは?,に,はち,めい,ろく,1 +123,1年生の漢字[日]の読みは?,にち,ひゃく,め,いん,1 +124,1年生の漢字[入]の読みは?,にゅう,ぶん,りつ,はね,1 +125,1年生の漢字[年]の読みは?,とし,き,ちから,くも,1 +126,1年生の漢字[白]の読みは?,しろ,ほん,はやし,えん,1 +127,1年生の漢字[八]の読みは?,はち,めい,ろく,えん,1 +128,1年生の漢字[百]の読みは?,ひゃく,め,いん,なに,1 +129,1年生の漢字[文]の読みは?,ぶん,りつ,はね,か,1 +130,1年生の漢字[木]の読みは?,き,ちから,くも,なつ,1 +131,1年生の漢字[本]の読みは?,ほん,はやし,えん,いえ,1 +132,1年生の漢字[名]の読みは?,めい,ろく,えん,うた,1 +133,1年生の漢字[目]の読みは?,め,いん,なに,が,1 +134,1年生の漢字[立]の読みは?,りつ,はね,か,かい,1 +135,1年生の漢字[力]の読みは?,ちから,くも,なつ,かい,1 +136,1年生の漢字[林]の読みは?,はやし,えん,いえ,うみ,1 +137,1年生の漢字[六]の読みは?,ろく,えん,うた,え,1 +138,2年生の漢字[引]の読みは?,いん,なに,が,そと,1 +139,2年生の漢字[羽]の読みは?,はね,か,かい,かく,1 +140,2年生の漢字[雲]の読みは?,くも,なつ,かい,らく,1 +141,2年生の漢字[園]の読みは?,えん,いえ,うみ,かつ,1 +142,2年生の漢字[遠]の読みは?,えん,うた,え,あいだ,1 +143,2年生の漢字[何]の読みは?,なに,が,そと,いわ,1 +144,2年生の漢字[科]の読みは?,か,かい,かく,かお,1 +145,2年生の漢字[夏]の読みは?,なつ,かい,らく,き,1 +146,2年生の漢字[家]の読みは?,いえ,うみ,かつ,き,1 +147,2年生の漢字[歌]の読みは?,うた,え,あいだ,き,1 +148,2年生の漢字[画]の読みは?,が,そと,いわ,ゆみ,1 +149,2年生の漢字[回]の読みは?,かい,かく,かお,うし,1 +150,2年生の漢字[会]の読みは?,かい,らく,き,さかな,1 +151,2年生の漢字[海]の読みは?,うみ,かつ,き,けい,1 +152,2年生の漢字[絵]の読みは?,え,あいだ,き,きょう,1 +153,2年生の漢字[外]の読みは?,そと,いわ,ゆみ,きょう,1 +154,2年生の漢字[角]の読みは?,かく,かお,うし,きん,1 +155,2年生の漢字[楽]の読みは?,らく,き,さかな,あに,1 +156,2年生の漢字[活]の読みは?,かつ,き,けい,かたち,1 +157,2年生の漢字[間]の読みは?,あいだ,き,きょう,けい,1 +158,2年生の漢字[岩]の読みは?,いわ,ゆみ,きょう,もと,1 +159,2年生の漢字[顔]の読みは?,かお,うし,きん,げん,1 +160,2年生の漢字[汽]の読みは?,き,さかな,あに,げん,1 +161,2年生の漢字[記]の読みは?,き,けい,かたち,と,1 +162,2年生の漢字[帰]の読みは?,き,きょう,けい,こ,1 +163,2年生の漢字[弓]の読みは?,ゆみ,きょう,もと,うし,1 +164,2年生の漢字[牛]の読みは?,うし,きん,げん,あと,1 +165,2年生の漢字[魚]の読みは?,さかな,あに,げん,ご,1 +166,2年生の漢字[京]の読みは?,けい,かたち,と,こう,1 +167,2年生の漢字[強]の読みは?,きょう,けい,こ,こう,1 +168,2年生の漢字[教]の読みは?,きょう,もと,うし,こう,1 +169,2年生の漢字[近]の読みは?,きん,げん,あと,こう,1 +170,2年生の漢字[兄]の読みは?,あに,げん,ご,ひかり,1 +171,2年生の漢字[形]の読みは?,かたち,と,こう,こう,1 +172,2年生の漢字[計]の読みは?,けい,こ,こう,ぎょう,1 +173,2年生の漢字[元]の読みは?,もと,うし,こう,こう,1 +174,2年生の漢字[言]の読みは?,げん,あと,こう,き,1 +175,2年生の漢字[原]の読みは?,げん,ご,ひかり,ごう,1 +176,2年生の漢字[戸]の読みは?,と,こう,こう,たに,1 +177,2年生の漢字[古]の読みは?,こ,こう,ぎょう,くに,1 +178,2年生の漢字[牛]の読みは?,うし,こう,こう,くろ,1 +179,2年生の漢字[後]の読みは?,あと,こう,き,いま,1 +180,2年生の漢字[語]の読みは?,ご,ひかり,ごう,さい,1 +181,2年生の漢字[工]の読みは?,こう,こう,たに,さい,1 +182,2年生の漢字[公]の読みは?,こう,ぎょう,くに,さく,1 +183,2年生の漢字[広]の読みは?,こう,こう,くろ,さん,1 +184,2年生の漢字[交]の読みは?,こう,き,いま,し,1 +185,2年生の漢字[光]の読みは?,ひかり,ごう,さい,し,1 +186,2年生の漢字[考]の読みは?,こう,たに,さい,や,1 +187,2年生の漢字[行]の読みは?,ぎょう,くに,さく,あね,1 +188,2年生の漢字[高]の読みは?,こう,くろ,さん,し,1 +189,2年生の漢字[黄]の読みは?,き,いま,し,かみ,1 +190,2年生の漢字[合]の読みは?,ごう,さい,し,てら,1 +191,2年生の漢字[谷]の読みは?,たに,さい,や,じ,1 +192,2年生の漢字[国]の読みは?,くに,さく,あね,じ,1 +193,2年生の漢字[黒]の読みは?,くろ,さん,し,しつ,1 +194,2年生の漢字[今]の読みは?,いま,し,かみ,しゃ,1 +195,2年生の漢字[才]の読みは?,さい,し,てら,じゃく,1 +196,2年生の漢字[細]の読みは?,さい,や,じ,くび,1 +197,2年生の漢字[作]の読みは?,さく,あね,じ,あき,1 +198,2年生の漢字[算]の読みは?,さん,し,しつ,しゅう,1 +199,2年生の漢字[止]の読みは?,し,かみ,しゃ,はる,1 +200,2年生の漢字[市]の読みは?,し,てら,じゃく,しょ,1 +201,2年生の漢字[矢]の読みは?,や,じ,くび,しょう,1 +202,2年生の漢字[姉]の読みは?,あね,じ,あき,ば,1 +203,2年生の漢字[思]の読みは?,し,しつ,しゅう,いろ,1 +204,2年生の漢字[紙]の読みは?,かみ,しゃ,はる,こころ,1 +205,2年生の漢字[寺]の読みは?,てら,じゃく,しょ,しょく,1 +206,2年生の漢字[自]の読みは?,じ,くび,しょう,しん,1 +207,2年生の漢字[時]の読みは?,じ,あき,ば,おや,1 +208,2年生の漢字[室]の読みは?,しつ,しゅう,いろ,ず,1 +209,2年生の漢字[社]の読みは?,しゃ,はる,こころ,かず,1 +210,2年生の漢字[弱]の読みは?,じゃく,しょ,しょく,にし,1 +211,2年生の漢字[首]の読みは?,くび,しょう,しん,こえ,1 +212,2年生の漢字[秋]の読みは?,あき,ば,おや,ほし,1 +213,2年生の漢字[週]の読みは?,しゅう,いろ,ず,はれ,1 +214,2年生の漢字[春]の読みは?,はる,こころ,かず,せつ,1 +215,2年生の漢字[書]の読みは?,しょ,しょく,にし,ゆき,1 +216,2年生の漢字[少]の読みは?,しょう,しん,こえ,ふね,1 +217,2年生の漢字[場]の読みは?,ば,おや,ほし,せん,1 +218,2年生の漢字[色]の読みは?,いろ,ず,はれ,まえ,1 +219,2年生の漢字[心]の読みは?,こころ,かず,せつ,くみ,1 +220,2年生の漢字[食]の読みは?,しょく,にし,ゆき,そう,1 +221,2年生の漢字[新]の読みは?,しん,こえ,ふね,た,1 +222,2年生の漢字[親]の読みは?,おや,ほし,せん,た,1 +223,2年生の漢字[図]の読みは?,ず,はれ,まえ,たい,1 +224,2年生の漢字[数]の読みは?,かず,せつ,くみ,だい,1 +225,2年生の漢字[西]の読みは?,にし,ゆき,そう,ち,1 +226,2年生の漢字[声]の読みは?,こえ,ふね,た,いけ,1 +227,2年生の漢字[星]の読みは?,ほし,せん,た,ち,1 +228,2年生の漢字[晴]の読みは?,はれ,まえ,たい,ちゃ,1 +229,2年生の漢字[切]の読みは?,せつ,くみ,だい,ひる,1 +230,2年生の漢字[雪]の読みは?,ゆき,そう,ち,ちょう,1 +231,2年生の漢字[船]の読みは?,ふね,た,いけ,とり,1 +232,2年生の漢字[線]の読みは?,せん,た,ち,あさ,1 +233,2年生の漢字[前]の読みは?,まえ,たい,ちゃ,ちょく,1 +234,2年生の漢字[組]の読みは?,くみ,だい,ひる,つう,1 +235,2年生の漢字[走]の読みは?,そう,ち,ちょう,おとうと,1 +236,2年生の漢字[多]の読みは?,た,いけ,とり,みせ,1 +237,2年生の漢字[太]の読みは?,た,ち,あさ,てん,1 +238,2年生の漢字[体]の読みは?,たい,ちゃ,ちょく,でん,1 +239,2年生の漢字[台]の読みは?,だい,ひる,つう,かたな,1 +240,2年生の漢字[地]の読みは?,ち,ちょう,おとうと,ふゆ,1 +241,2年生の漢字[池]の読みは?,いけ,とり,みせ,とう,1 +242,2年生の漢字[知]の読みは?,ち,あさ,てん,ひがし,1 +243,2年生の漢字[茶]の読みは?,ちゃ,ちょく,でん,とう,1 +244,2年生の漢字[昼]の読みは?,ひる,つう,かたな,あたま,1 +245,2年生の漢字[長]の読みは?,ちょう,おとうと,ふゆ,どう,1 +246,2年生の漢字[鳥]の読みは?,とり,みせ,とう,みち,1 +247,2年生の漢字[朝]の読みは?,あさ,てん,ひがし,どく,1 +248,2年生の漢字[直]の読みは?,ちょく,でん,とう,うち,1 +249,2年生の漢字[通]の読みは?,つう,かたな,あたま,みなみ,1 +250,2年生の漢字[弟]の読みは?,おとうと,ふゆ,どう,にく,1 +251,2年生の漢字[店]の読みは?,みせ,とう,みち,うま,1 +252,2年生の漢字[点]の読みは?,てん,ひがし,どく,ばい,1 +253,2年生の漢字[電]の読みは?,でん,とう,うち,ばい,1 +254,2年生の漢字[刀]の読みは?,かたな,あたま,みなみ,むぎ,1 +255,2年生の漢字[冬]の読みは?,ふゆ,どう,にく,はん,1 +256,2年生の漢字[当]の読みは?,とう,みち,うま,ばん,1 +257,2年生の漢字[東]の読みは?,ひがし,どく,ばい,ちち,1 +258,2年生の漢字[答]の読みは?,とう,うち,ばい,かぜ,1 +259,2年生の漢字[頭]の読みは?,あたま,みなみ,むぎ,ぶん,1 +260,2年生の漢字[同]の読みは?,どう,にく,はん,ぶん,1 +261,2年生の漢字[道]の読みは?,みち,うま,ばん,こめ,1 +262,2年生の漢字[読]の読みは?,どく,ばい,ちち,ほ,1 +263,2年生の漢字[内]の読みは?,うち,ばい,かぜ,はは,1 +264,2年生の漢字[南]の読みは?,みなみ,むぎ,ぶん,ほう,1 +265,2年生の漢字[肉]の読みは?,にく,はん,ぶん,きた,1 +266,2年生の漢字[馬]の読みは?,うま,ばん,こめ,ごと,1 +267,2年生の漢字[売]の読みは?,ばい,ちち,ほ,いもうと,1 +268,2年生の漢字[買]の読みは?,ばい,かぜ,はは,まん,1 +269,2年生の漢字[麦]の読みは?,むぎ,ぶん,ほう,みょう,1 +270,2年生の漢字[半]の読みは?,はん,ぶん,きた,なる,1 +271,2年生の漢字[番]の読みは?,ばん,こめ,ごと,け,1 +272,2年生の漢字[父]の読みは?,ちち,ほ,いもうと,もん,1 +273,2年生の漢字[風]の読みは?,かぜ,はは,まん,よる,1 +274,2年生の漢字[分]の読みは?,ぶん,ほう,みょう,の,1 +275,2年生の漢字[聞]の読みは?,ぶん,きた,なる,とも,1 +276,2年生の漢字[米]の読みは?,こめ,ごと,け,よう,1 +277,2年生の漢字[歩]の読みは?,ほ,いもうと,もん,よう,1 +278,2年生の漢字[母]の読みは?,はは,まん,よる,らい,1 +279,2年生の漢字[方]の読みは?,ほう,みょう,の,さと,1 +280,2年生の漢字[北]の読みは?,きた,なる,とも,ことわり,1 +281,2年生の漢字[毎]の読みは?,ごと,け,よう,はなし,1 +282,2年生の漢字[妹]の読みは?,いもうと,もん,よう,あく,1 +283,2年生の漢字[万]の読みは?,まん,よる,らい,あん,1 +284,2年生の漢字[明]の読みは?,みょう,の,さと,あん,1 +285,2年生の漢字[鳴]の読みは?,なる,とも,ことわり,い,1 +286,2年生の漢字[毛]の読みは?,け,よう,はなし,い,1 +287,2年生の漢字[門]の読みは?,もん,よう,あく,い,1 +288,2年生の漢字[夜]の読みは?,よる,らい,あん,いく,1 +289,2年生の漢字[野]の読みは?,の,さと,あん,いん,1 +290,2年生の漢字[友]の読みは?,とも,ことわり,い,いん,1 +291,2年生の漢字[用]の読みは?,よう,はなし,い,いん,1 +292,2年生の漢字[曜]の読みは?,よう,あく,い,うん,1 +293,2年生の漢字[来]の読みは?,らい,あん,いく,えい,1 +294,2年生の漢字[里]の読みは?,さと,あん,いん,えき,1 +295,2年生の漢字[理]の読みは?,ことわり,い,いん,おう,1 +296,2年生の漢字[話]の読みは?,はなし,い,いん,よこ,1 +297,3年生の漢字[悪]の読みは?,あく,い,うん,おく,1 +298,3年生の漢字[安]の読みは?,あん,いく,えい,おん,1 +299,3年生の漢字[暗]の読みは?,あん,いん,えき,か,1 +300,3年生の漢字[医]の読みは?,い,いん,おう,に,1 +301,3年生の漢字[委]の読みは?,い,いん,よこ,かい,1 +302,3年生の漢字[意]の読みは?,い,うん,おく,かい,1 +303,3年生の漢字[育]の読みは?,いく,えい,おん,かい,1 +304,3年生の漢字[員]の読みは?,いん,えき,か,かん,1 +305,3年生の漢字[院]の読みは?,いん,おう,に,かん,1 +306,3年生の漢字[飲]の読みは?,いん,よこ,かい,かん,1 +307,3年生の漢字[運]の読みは?,うん,おく,かい,やかた,1 +308,3年生の漢字[泳]の読みは?,えい,おん,かい,きし,1 +309,3年生の漢字[駅]の読みは?,えき,か,かん,き,1 +310,3年生の漢字[央]の読みは?,おう,に,かん,き,1 +311,3年生の漢字[横]の読みは?,よこ,かい,かん,きゃく,1 +312,3年生の漢字[屋]の読みは?,おく,かい,やかた,きゅう,1 +313,3年生の漢字[温]の読みは?,おん,かい,きし,きゅう,1 +314,3年生の漢字[化]の読みは?,か,かん,き,きゅう,1 +315,3年生の漢字[荷]の読みは?,に,かん,き,みや,1 +316,3年生の漢字[界]の読みは?,かい,かん,きゃく,たま,1 +317,3年生の漢字[開]の読みは?,かい,やかた,きゅう,きょ,1 +318,3年生の漢字[階]の読みは?,かい,きし,きゅう,はし,1 +319,3年生の漢字[寒]の読みは?,かん,き,きゅう,わざ,1 +320,3年生の漢字[感]の読みは?,かん,き,みや,きょく,1 +321,3年生の漢字[漢]の読みは?,かん,きゃく,たま,きょく,1 +322,3年生の漢字[館]の読みは?,やかた,きゅう,きょ,ぎん,1 +323,3年生の漢字[岸]の読みは?,きし,きゅう,はし,く,1 +324,3年生の漢字[起]の読みは?,き,きゅう,わざ,く,1 +325,3年生の漢字[期]の読みは?,き,みや,きょく,ぐ,1 +326,3年生の漢字[客]の読みは?,きゃく,たま,きょく,きみ,1 +327,3年生の漢字[究]の読みは?,きゅう,きょ,ぎん,かかり,1 +328,3年生の漢字[急]の読みは?,きゅう,はし,く,けい,1 +329,3年生の漢字[級]の読みは?,きゅう,わざ,く,ち,1 +330,3年生の漢字[宮]の読みは?,みや,きょく,ぐ,けつ,1 +331,3年生の漢字[球]の読みは?,たま,きょく,きみ,けん,1 +332,3年生の漢字[去]の読みは?,きょ,ぎん,かかり,けん,1 +333,3年生の漢字[橋]の読みは?,はし,く,けい,こ,1 +334,3年生の漢字[業]の読みは?,わざ,く,ち,みずうみ,1 +335,3年生の漢字[曲]の読みは?,きょく,ぐ,けつ,むこう,1 +336,3年生の漢字[局]の読みは?,きょく,きみ,けん,さち,1 +337,3年生の漢字[銀]の読みは?,ぎん,かかり,けん,みなと,1 +338,3年生の漢字[区]の読みは?,く,けい,こ,ごう,1 +339,3年生の漢字[苦]の読みは?,く,ち,みずうみ,ね,1 +340,3年生の漢字[具]の読みは?,ぐ,けつ,むこう,まつり,1 +341,3年生の漢字[君]の読みは?,きみ,けん,さち,さら,1 +342,3年生の漢字[係]の読みは?,かかり,けん,みなと,し,1 +343,3年生の漢字[軽]の読みは?,けい,こ,ごう,し,1 +344,3年生の漢字[血]の読みは?,ち,みずうみ,ね,し,1 +345,3年生の漢字[決]の読みは?,けつ,むこう,まつり,し,1 +346,3年生の漢字[研]の読みは?,けん,さち,さら,ゆび,1 +347,3年生の漢字[県]の読みは?,けん,みなと,し,は,1 +348,3年生の漢字[庫]の読みは?,こ,ごう,し,し,1 +349,3年生の漢字[湖]の読みは?,みずうみ,ね,し,つぎ,1 +350,3年生の漢字[向]の読みは?,むこう,まつり,し,こと,1 +351,3年生の漢字[幸]の読みは?,さち,さら,ゆび,じ,1 +352,3年生の漢字[港]の読みは?,みなと,し,は,しき,1 +353,3年生の漢字[号]の読みは?,ごう,し,し,じつ,1 +354,3年生の漢字[根]の読みは?,ね,し,つぎ,しゃ,1 +355,3年生の漢字[祭]の読みは?,まつり,し,こと,しゃ,1 +356,3年生の漢字[皿]の読みは?,さら,ゆび,じ,しゅ,1 +357,3年生の漢字[仕]の読みは?,し,は,しき,しゅ,1 +358,3年生の漢字[死]の読みは?,し,し,じつ,しゅ,1 +359,3年生の漢字[使]の読みは?,し,つぎ,しゃ,しゅ,1 +360,3年生の漢字[始]の読みは?,し,こと,しゃ,じゅ,1 +361,3年生の漢字[指]の読みは?,ゆび,じ,しゅ,しゅう,1 +362,3年生の漢字[歯]の読みは?,は,しき,しゅ,しゅう,1 +363,3年生の漢字[詩]の読みは?,し,じつ,しゅ,しゅう,1 +364,3年生の漢字[次]の読みは?,つぎ,しゃ,しゅ,しゅう,1 +365,3年生の漢字[事]の読みは?,こと,しゃ,じゅ,しゅう,1 +366,3年生の漢字[持]の読みは?,じ,しゅ,しゅう,じゅう,1 +367,3年生の漢字[式]の読みは?,しき,しゅ,しゅう,じゅう,1 +368,3年生の漢字[実]の読みは?,じつ,しゅ,しゅう,やど,1 +369,3年生の漢字[写]の読みは?,しゃ,しゅ,しゅう,ところ,1 +370,3年生の漢字[者]の読みは?,しゃ,じゅ,しゅう,しょ,1 +371,3年生の漢字[主]の読みは?,しゅ,しゅう,じゅう,じょ,1 +372,3年生の漢字[守]の読みは?,しゅ,しゅう,じゅう,しょう,1 +373,3年生の漢字[取]の読みは?,しゅ,しゅう,やど,しょう,1 +374,3年生の漢字[酒]の読みは?,しゅ,しゅう,ところ,あきない,1 +375,3年生の漢字[受]の読みは?,じゅ,しゅう,しょ,しょう,1 +376,3年生の漢字[州]の読みは?,しゅう,じゅう,じょ,しょう,1 +377,3年生の漢字[拾]の読みは?,しゅう,じゅう,しょう,じょう,1 +378,3年生の漢字[終]の読みは?,しゅう,やど,しょう,しょく,1 +379,3年生の漢字[習]の読みは?,しゅう,ところ,あきない,しん,1 +380,3年生の漢字[集]の読みは?,しゅう,しょ,しょう,しん,1 +381,3年生の漢字[住]の読みは?,じゅう,じょ,しょう,かみ,1 +382,3年生の漢字[重]の読みは?,じゅう,しょう,じょう,しん,1 +383,3年生の漢字[宿]の読みは?,やど,しょう,しょく,しん,1 +384,3年生の漢字[所]の読みは?,ところ,あきない,しん,しん,1 +385,3年生の漢字[暑]の読みは?,しょ,しょう,しん,よ,1 +386,3年生の漢字[助]の読みは?,じょ,しょう,かみ,せい,1 +387,3年生の漢字[昭]の読みは?,しょう,じょう,しん,むかし,1 +388,3年生の漢字[消]の読みは?,しょう,しょく,しん,ぜん,1 +389,3年生の漢字[商]の読みは?,あきない,しん,しん,そう,1 +390,3年生の漢字[章]の読みは?,しょう,しん,よ,そう,1 +391,3年生の漢字[勝]の読みは?,しょう,かみ,せい,そう,1 +392,3年生の漢字[乗]の読みは?,じょう,しん,むかし,いき,1 +393,3年生の漢字[植]の読みは?,しょく,しん,ぜん,そく,1 +394,3年生の漢字[申]の読みは?,しん,しん,そう,ぞく,1 +395,3年生の漢字[身]の読みは?,しん,よ,そう,た,1 +396,3年生の漢字[神]の読みは?,かみ,せい,そう,だ,1 +397,3年生の漢字[真]の読みは?,しん,むかし,いき,たい,1 +398,3年生の漢字[深]の読みは?,しん,ぜん,そく,たい,1 +399,3年生の漢字[進]の読みは?,しん,そう,ぞく,だい,1 +400,3年生の漢字[世]の読みは?,よ,そう,た,だい,1 +401,3年生の漢字[整]の読みは?,せい,そう,だ,だい,1 +402,3年生の漢字[昔]の読みは?,むかし,いき,たい,たん,1 +403,3年生の漢字[全]の読みは?,ぜん,そく,たい,たん,1 +404,3年生の漢字[相]の読みは?,そう,ぞく,だい,だん,1 +405,3年生の漢字[送]の読みは?,そう,た,だい,ちゃく,1 +406,3年生の漢字[想]の読みは?,そう,だ,だい,ちゅう,1 +407,3年生の漢字[息]の読みは?,いき,たい,たん,はしら,1 +408,3年生の漢字[速]の読みは?,そく,たい,たん,ちょう,1 +409,3年生の漢字[族]の読みは?,ぞく,だい,だん,ちょう,1 +410,3年生の漢字[他]の読みは?,た,だい,ちゃく,ちょう,1 +411,3年生の漢字[打]の読みは?,だ,だい,ちゅう,つい,1 +412,3年生の漢字[対]の読みは?,たい,たん,はしら,じょう,1 +413,3年生の漢字[待]の読みは?,たい,たん,ちょう,にわ,1 +414,3年生の漢字[代]の読みは?,だい,だん,ちょう,ふえ,1 +415,3年生の漢字[第]の読みは?,だい,ちゃく,ちょう,てつ,1 +416,3年生の漢字[題]の読みは?,だい,ちゅう,つい,てん,1 +417,3年生の漢字[炭]の読みは?,たん,はしら,じょう,みやこ,1 +418,3年生の漢字[短]の読みは?,たん,ちょう,にわ,たび,1 +419,3年生の漢字[談]の読みは?,だん,ちょう,ふえ,とう,1 +420,3年生の漢字[着]の読みは?,ちゃく,ちょう,てつ,まめ,1 +421,3年生の漢字[注]の読みは?,ちゅう,つい,てん,しま,1 +422,3年生の漢字[柱]の読みは?,はしら,じょう,みやこ,ゆ,1 +423,3年生の漢字[丁]の読みは?,ちょう,にわ,たび,とう,1 +424,3年生の漢字[帳]の読みは?,ちょう,ふえ,とう,とう,1 +425,3年生の漢字[調]の読みは?,ちょう,てつ,まめ,どう,1 +426,3年生の漢字[追]の読みは?,つい,てん,しま,どう,1 +427,3年生の漢字[定]の読みは?,じょう,みやこ,ゆ,のう,1 +428,3年生の漢字[庭]の読みは?,にわ,たび,とう,なみ,1 +429,3年生の漢字[笛]の読みは?,ふえ,とう,とう,はい,1 +430,3年生の漢字[鉄]の読みは?,てつ,まめ,どう,ばい,1 +431,3年生の漢字[転]の読みは?,てん,しま,どう,はこ,1 +432,3年生の漢字[都]の読みは?,みやこ,ゆ,のう,はたけ,1 +433,3年生の漢字[度]の読みは?,たび,とう,なみ,はつ,1 +434,3年生の漢字[投]の読みは?,とう,とう,はい,はん,1 +435,3年生の漢字[豆]の読みは?,まめ,どう,ばい,さか,1 +436,3年生の漢字[島]の読みは?,しま,どう,はこ,いた,1 +437,3年生の漢字[湯]の読みは?,ゆ,のう,はたけ,かわ,1 +438,3年生の漢字[登]の読みは?,とう,なみ,はつ,ひ,1 +439,3年生の漢字[等]の読みは?,とう,はい,はん,び,1 +440,3年生の漢字[動]の読みは?,どう,ばい,さか,はな,1 +441,3年生の漢字[童]の読みは?,どう,はこ,いた,ふで,1 +442,3年生の漢字[農]の読みは?,のう,はたけ,かわ,こおり,1 +443,3年生の漢字[波]の読みは?,なみ,はつ,ひ,おもて,1 +444,3年生の漢字[配]の読みは?,はい,はん,び,びょう,1 +445,3年生の漢字[倍]の読みは?,ばい,さか,はな,やまい,1 +446,3年生の漢字[箱]の読みは?,はこ,いた,ふで,しな,1 +447,3年生の漢字[畑]の読みは?,はたけ,かわ,こおり,ふ,1 +448,3年生の漢字[発]の読みは?,はつ,ひ,おもて,ぶ,1 +449,3年生の漢字[反]の読みは?,はん,び,びょう,ふく,1 +450,3年生の漢字[坂]の読みは?,さか,はな,やまい,ふく,1 +451,3年生の漢字[板]の読みは?,いた,ふで,しな,ぶつ,1 +452,3年生の漢字[皮]の読みは?,かわ,こおり,ふ,ひら,1 +453,3年生の漢字[悲]の読みは?,ひ,おもて,ぶ,へん,1 +454,3年生の漢字[美]の読みは?,び,びょう,ふく,べん,1 +455,3年生の漢字[鼻]の読みは?,はな,やまい,ふく,ほう,1 +456,3年生の漢字[筆]の読みは?,ふで,しな,ぶつ,あじ,1 +457,3年生の漢字[氷]の読みは?,こおり,ふ,ひら,いのち,1 +458,3年生の漢字[表]の読みは?,おもて,ぶ,へん,めん,1 +459,3年生の漢字[秒]の読みは?,びょう,ふく,べん,もん,1 +460,3年生の漢字[病]の読みは?,やまい,ふく,ほう,やく,1 +461,3年生の漢字[品]の読みは?,しな,ぶつ,あじ,くすり,1 +462,3年生の漢字[負]の読みは?,ふ,ひら,いのち,ゆ,1 +463,3年生の漢字[部]の読みは?,ぶ,へん,めん,あぶら,1 +464,3年生の漢字[服]の読みは?,ふく,べん,もん,ゆう,1 +465,3年生の漢字[福]の読みは?,ふく,ほう,やく,ゆう,1 +466,3年生の漢字[物]の読みは?,ぶつ,あじ,くすり,よ,1 +467,3年生の漢字[平]の読みは?,ひら,いのち,ゆ,ひつじ,1 +468,3年生の漢字[返]の読みは?,へん,めん,あぶら,よう,1 +469,3年生の漢字[勉]の読みは?,べん,もん,ゆう,は,1 +470,3年生の漢字[放]の読みは?,ほう,やく,ゆう,よう,1 +471,3年生の漢字[味]の読みは?,あじ,くすり,よ,さま,1 +472,3年生の漢字[命]の読みは?,いのち,ゆ,ひつじ,らく,1 +473,3年生の漢字[面]の読みは?,めん,あぶら,よう,りゅう,1 +474,3年生の漢字[問]の読みは?,もん,ゆう,は,たび,1 +475,3年生の漢字[役]の読みは?,やく,ゆう,よう,りょう,1 +476,3年生の漢字[薬]の読みは?,くすり,よ,さま,みどり,1 +477,3年生の漢字[由]の読みは?,ゆ,ひつじ,らく,れい,1 +478,3年生の漢字[油]の読みは?,あぶら,よう,りゅう,れつ,1 +479,3年生の漢字[有]の読みは?,ゆう,は,たび,れん,1 +480,3年生の漢字[遊]の読みは?,ゆう,よう,りょう,ろ,1 +481,3年生の漢字[予]の読みは?,よ,さま,みどり,わ,1 +482,3年生の漢字[羊]の読みは?,ひつじ,らく,れい,あい,1 +483,3年生の漢字[洋]の読みは?,よう,りゅう,れつ,あん,1 +484,3年生の漢字[葉]の読みは?,は,たび,れん,い,1 +485,3年生の漢字[陽]の読みは?,よう,りょう,ろ,ころも,1 +486,3年生の漢字[様]の読みは?,さま,みどり,わ,くらい,1 +487,3年生の漢字[落]の読みは?,らく,れい,あい,い,1 +488,3年生の漢字[流]の読みは?,りゅう,れつ,あん,い,1 +489,3年生の漢字[旅]の読みは?,たび,れん,い,しるし,1 +490,3年生の漢字[両]の読みは?,りょう,ろ,ころも,えい,1 +491,3年生の漢字[緑]の読みは?,みどり,わ,くらい,えい,1 +492,3年生の漢字[礼]の読みは?,れい,あい,い,しお,1 +493,3年生の漢字[列]の読みは?,れつ,あん,い,おく,1 +494,3年生の漢字[練]の読みは?,れん,い,しるし,か,1 +495,3年生の漢字[路]の読みは?,ろ,ころも,えい,か,1 +496,3年生の漢字[和]の読みは?,わ,くらい,えい,か,1 +497,4年生の漢字[愛]の読みは?,あい,い,しお,か,1 +498,4年生の漢字[案]の読みは?,あん,い,おく,め,1 +499,4年生の漢字[以]の読みは?,い,しるし,か,かい,1 +500,4年生の漢字[衣]の読みは?,ころも,えい,か,かい,1 +501,4年生の漢字[位]の読みは?,くらい,えい,か,がい,1 +502,4年生の漢字[囲]の読みは?,い,しお,か,まち,1 +503,4年生の漢字[胃]の読みは?,い,おく,め,かく,1 +504,4年生の漢字[印]の読みは?,しるし,か,かい,かく,1 +505,4年生の漢字[英]の読みは?,えい,か,かい,かん,1 +506,4年生の漢字[栄]の読みは?,えい,か,がい,かん,1 +507,4年生の漢字[塩]の読みは?,しお,か,まち,かん,1 +508,4年生の漢字[億]の読みは?,おく,め,かく,かん,1 +509,4年生の漢字[加]の読みは?,か,かい,かく,かん,1 +510,4年生の漢字[果]の読みは?,か,かい,かん,がん,1 +511,4年生の漢字[貨]の読みは?,か,がい,かん,き,1 +512,4年生の漢字[課]の読みは?,か,まち,かん,き,1 +513,4年生の漢字[芽]の読みは?,め,かく,かん,き,1 +514,4年生の漢字[改]の読みは?,かい,かく,かん,き,1 +515,4年生の漢字[械]の読みは?,かい,かん,がん,はた,1 +516,4年生の漢字[害]の読みは?,がい,かん,き,うつわ,1 +517,4年生の漢字[街]の読みは?,まち,かん,き,き,1 +518,4年生の漢字[各]の読みは?,かく,かん,き,ぎ,1 +519,4年生の漢字[覚]の読みは?,かく,かん,き,きゅう,1 +520,4年生の漢字[完]の読みは?,かん,がん,はた,きゅう,1 +521,4年生の漢字[官]の読みは?,かん,き,うつわ,きゅう,1 +522,4年生の漢字[管]の読みは?,かん,き,き,きゅう,1 +523,4年生の漢字[関]の読みは?,かん,き,ぎ,きょ,1 +524,4年生の漢字[観]の読みは?,かん,き,きゅう,りょう,1 +525,4年生の漢字[願]の読みは?,がん,はた,きゅう,きょう,1 +526,4年生の漢字[希]の読みは?,き,うつわ,きゅう,きょう,1 +527,4年生の漢字[季]の読みは?,き,き,きゅう,きょう,1 +528,4年生の漢字[紀]の読みは?,き,ぎ,きょ,きょう,1 +529,4年生の漢字[喜]の読みは?,き,きゅう,りょう,きょく,1 +530,4年生の漢字[旗]の読みは?,はた,きゅう,きょう,くん,1 +531,4年生の漢字[器]の読みは?,うつわ,きゅう,きょう,ぐん,1 +532,4年生の漢字[機]の読みは?,き,きゅう,きょう,ぐん,1 +533,4年生の漢字[議]の読みは?,ぎ,きょ,きょう,けい,1 +534,4年生の漢字[求]の読みは?,きゅう,りょう,きょく,けい,1 +535,4年生の漢字[泣]の読みは?,きゅう,きょう,くん,けい,1 +536,4年生の漢字[救]の読みは?,きゅう,きょう,ぐん,げい,1 +537,4年生の漢字[給]の読みは?,きゅう,きょう,ぐん,けつ,1 +538,4年生の漢字[挙]の読みは?,きょ,きょう,けい,けつ,1 +539,4年生の漢字[漁]の読みは?,りょう,きょく,けい,けん,1 +540,4年生の漢字[共]の読みは?,きょう,くん,けい,けん,1 +541,4年生の漢字[協]の読みは?,きょう,ぐん,げい,けん,1 +542,4年生の漢字[鏡]の読みは?,きょう,ぐん,けつ,こ,1 +543,4年生の漢字[竸]の読みは?,きょう,けい,けつ,こう,1 +544,4年生の漢字[極]の読みは?,きょく,けい,けん,こう,1 +545,4年生の漢字[訓]の読みは?,くん,けい,けん,そうろう,1 +546,4年生の漢字[軍]の読みは?,ぐん,げい,けん,こう,1 +547,4年生の漢字[郡]の読みは?,ぐん,けつ,こ,こう,1 +548,4年生の漢字[径]の読みは?,けい,けつ,こう,こく,1 +549,4年生の漢字[型]の読みは?,けい,けん,こう,さ,1 +550,4年生の漢字[景]の読みは?,けい,けん,そうろう,さい,1 +551,4年生の漢字[芸]の読みは?,げい,けん,こう,さい,1 +552,4年生の漢字[欠]の読みは?,けつ,こ,こう,ざい,1 +553,4年生の漢字[結]の読みは?,けつ,こう,こく,さく,1 +554,4年生の漢字[建]の読みは?,けん,こう,さ,さつ,1 +555,4年生の漢字[健]の読みは?,けん,そうろう,さい,さつ,1 +556,4年生の漢字[験]の読みは?,けん,こう,さい,さつ,1 +557,4年生の漢字[固]の読みは?,こ,こう,ざい,さつ,1 +558,4年生の漢字[功]の読みは?,こう,こく,さく,さん,1 +559,4年生の漢字[好]の読みは?,こう,さ,さつ,さん,1 +560,4年生の漢字[候]の読みは?,そうろう,さい,さつ,さん,1 +561,4年生の漢字[航]の読みは?,こう,さい,さつ,ざん,1 +562,4年生の漢字[康]の読みは?,こう,ざい,さつ,し,1 +563,4年生の漢字[告]の読みは?,こく,さく,さん,し,1 +564,4年生の漢字[差]の読みは?,さ,さつ,さん,し,1 +565,4年生の漢字[菜]の読みは?,さい,さつ,さん,し,1 +566,4年生の漢字[最]の読みは?,さい,さつ,ざん,し,1 +567,4年生の漢字[材]の読みは?,ざい,さつ,し,じ,1 +568,4年生の漢字[昨]の読みは?,さく,さん,し,じ,1 +569,4年生の漢字[札]の読みは?,さつ,さん,し,じ,1 +570,4年生の漢字[刷]の読みは?,さつ,さん,し,しつ,1 +571,4年生の漢字[殺]の読みは?,さつ,ざん,し,しゃく,1 +572,4年生の漢字[察]の読みは?,さつ,し,じ,しゅ,1 +573,4年生の漢字[参]の読みは?,さん,し,じ,しゅう,1 +574,4年生の漢字[産]の読みは?,さん,し,じ,しゅく,1 +575,4年生の漢字[散]の読みは?,さん,し,しつ,じゅん,1 +576,4年生の漢字[残]の読みは?,ざん,し,しゃく,しょ,1 +577,4年生の漢字[士]の読みは?,し,じ,しゅ,まつ,1 +578,4年生の漢字[氏]の読みは?,し,じ,しゅう,しょう,1 +579,4年生の漢字[史]の読みは?,し,じ,しゅく,しょう,1 +580,4年生の漢字[司]の読みは?,し,しつ,じゅん,しょう,1 +581,4年生の漢字[試]の読みは?,し,しゃく,しょ,しょう,1 +582,4年生の漢字[児]の読みは?,じ,しゅ,まつ,しょう,1 +583,4年生の漢字[治]の読みは?,じ,しゅう,しょう,しょう,1 +584,4年生の漢字[辞]の読みは?,じ,しゅく,しょう,しん,1 +585,4年生の漢字[失]の読みは?,しつ,じゅん,しょう,しん,1 +586,4年生の漢字[借]の読みは?,しゃく,しょ,しょう,せい,1 +587,4年生の漢字[種]の読みは?,しゅ,まつ,しょう,しょう,1 +588,4年生の漢字[周]の読みは?,しゅう,しょう,しょう,せい,1 +589,4年生の漢字[祝]の読みは?,しゅく,しょう,しん,せい,1 +590,4年生の漢字[順]の読みは?,じゅん,しょう,しん,せき,1 +591,4年生の漢字[初]の読みは?,しょ,しょう,せい,せき,1 +592,4年生の漢字[松]の読みは?,まつ,しょう,しょう,せつ,1 +593,4年生の漢字[笑]の読みは?,しょう,しょう,せい,せつ,1 +594,4年生の漢字[唱]の読みは?,しょう,しん,せい,せつ,1 +595,4年生の漢字[焼]の読みは?,しょう,しん,せき,せん,1 +596,4年生の漢字[象]の読みは?,しょう,せい,せき,せん,1 +597,4年生の漢字[照]の読みは?,しょう,しょう,せつ,せん,1 +598,4年生の漢字[賞]の読みは?,しょう,せい,せつ,ねん,1 +599,4年生の漢字[臣]の読みは?,しん,せい,せつ,そう,1 +600,4年生の漢字[信]の読みは?,しん,せき,せん,そう,1 +601,4年生の漢字[成]の読みは?,せい,せき,せん,す,1 +602,4年生の漢字[省]の読みは?,しょう,せつ,せん,つか,1 +603,4年生の漢字[清]の読みは?,せい,せつ,ねん,がわ,1 +604,4年生の漢字[静]の読みは?,せい,せつ,そう,ぞく,1 +605,4年生の漢字[席]の読みは?,せき,せん,そう,そつ,1 +606,4年生の漢字[積]の読みは?,せき,せん,す,まご,1 +607,4年生の漢字[折]の読みは?,せつ,せん,つか,おび,1 +608,4年生の漢字[節]の読みは?,せつ,ねん,がわ,たい,1 +609,4年生の漢字[説]の読みは?,せつ,そう,ぞく,たち,1 +610,4年生の漢字[浅]の読みは?,せん,そう,そつ,たん,1 +611,4年生の漢字[戦]の読みは?,せん,す,まご,ち,1 +612,4年生の漢字[選]の読みは?,せん,つか,おび,ちゅう,1 +613,4年生の漢字[然]の読みは?,ねん,がわ,たい,ちょ,1 +614,4年生の漢字[争]の読みは?,そう,ぞく,たち,ちょう,1 +615,4年生の漢字[倉]の読みは?,そう,そつ,たん,ちょう,1 +616,4年生の漢字[巣]の読みは?,す,まご,ち,てい,1 +617,4年生の漢字[束]の読みは?,つか,おび,ちゅう,てい,1 +618,4年生の漢字[側]の読みは?,がわ,たい,ちょ,てい,1 +619,4年生の漢字[続]の読みは?,ぞく,たち,ちょう,まと,1 +620,4年生の漢字[卒]の読みは?,そつ,たん,ちょう,てん,1 +621,4年生の漢字[孫]の読みは?,まご,ち,てい,でん,1 +622,4年生の漢字[帯]の読みは?,おび,ちゅう,てい,と,1 +623,4年生の漢字[隊]の読みは?,たい,ちょ,てい,ど,1 +624,4年生の漢字[達]の読みは?,たち,ちょう,まと,とう,1 +625,4年生の漢字[単]の読みは?,たん,ちょう,てん,どう,1 +626,4年生の漢字[置]の読みは?,ち,てい,でん,どう,1 +627,4年生の漢字[仲]の読みは?,ちゅう,てい,と,とく,1 +628,4年生の漢字[貯]の読みは?,ちょ,てい,ど,とく,1 +629,4年生の漢字[兆]の読みは?,ちょう,まと,とう,どく,1 +630,4年生の漢字[腸]の読みは?,ちょう,てん,どう,ねつ,1 +631,4年生の漢字[低]の読みは?,てい,でん,どう,ねん,1 +632,4年生の漢字[底]の読みは?,てい,と,とく,はい,1 +633,4年生の漢字[停]の読みは?,てい,ど,とく,ばい,1 +634,4年生の漢字[的]の読みは?,まと,とう,どく,はく,1 +635,4年生の漢字[典]の読みは?,てん,どう,ねつ,めし,1 +636,4年生の漢字[伝]の読みは?,でん,どう,ねん,ひ,1 +637,4年生の漢字[徒]の読みは?,と,とく,はい,ひ,1 +638,4年生の漢字[努]の読みは?,ど,とく,ばい,ひつ,1 +639,4年生の漢字[灯]の読みは?,とう,どく,はく,ひょう,1 +640,4年生の漢字[堂]の読みは?,どう,ねつ,めし,ひょう,1 +641,4年生の漢字[働]の読みは?,どう,ねん,ひ,ふ,1 +642,4年生の漢字[特]の読みは?,とく,はい,ひ,ふ,1 +643,4年生の漢字[得]の読みは?,とく,ばい,ひつ,ふ,1 +644,4年生の漢字[毒]の読みは?,どく,はく,ひょう,ふ,1 +645,4年生の漢字[熱]の読みは?,ねつ,めし,ひょう,ふく,1 +646,4年生の漢字[念]の読みは?,ねん,ひ,ふ,ふん,1 +647,4年生の漢字[敗]の読みは?,はい,ひ,ふ,へい,1 +648,4年生の漢字[梅]の読みは?,ばい,ひつ,ふ,べつ,1 +649,4年生の漢字[博]の読みは?,はく,ひょう,ふ,へん,1 +650,4年生の漢字[飯]の読みは?,めし,ひょう,ふく,へん,1 +651,4年生の漢字[飛]の読みは?,ひ,ふ,ふん,べん,1 +652,4年生の漢字[費]の読みは?,ひ,ふ,へい,ほう,1 +653,4年生の漢字[必]の読みは?,ひつ,ふ,べつ,ほう,1 +654,4年生の漢字[票]の読みは?,ひょう,ふ,へん,ぼう,1 +655,4年生の漢字[標]の読みは?,ひょう,ふく,へん,ぼく,1 +656,4年生の漢字[不]の読みは?,ふ,ふん,べん,すえ,1 +657,4年生の漢字[夫]の読みは?,ふ,へい,ほう,みつ,1 +658,4年生の漢字[付]の読みは?,ふ,べつ,ほう,み,1 +659,4年生の漢字[府]の読みは?,ふ,へん,ぼう,みゃく,1 +660,4年生の漢字[副]の読みは?,ふく,へん,ぼく,みん,1 +661,4年生の漢字[粉]の読みは?,ふん,べん,すえ,む,1 +662,4年生の漢字[兵]の読みは?,へい,ほう,みつ,やく,1 +663,4年生の漢字[別]の読みは?,べつ,ほう,み,ゆう,1 +664,4年生の漢字[辺]の読みは?,へん,ぼう,みゃく,よう,1 +665,4年生の漢字[変]の読みは?,へん,ぼく,みん,よう,1 +666,4年生の漢字[便]の読みは?,べん,すえ,む,よく,1 +667,4年生の漢字[包]の読みは?,ほう,みつ,やく,り,1 +668,4年生の漢字[法]の読みは?,ほう,み,ゆう,りく,1 +669,4年生の漢字[望]の読みは?,ぼう,みゃく,よう,りょう,1 +670,4年生の漢字[牧]の読みは?,ぼく,みん,よう,りょう,1 +671,4年生の漢字[末]の読みは?,すえ,む,よく,りょう,1 +672,4年生の漢字[満]の読みは?,みつ,やく,り,りん,1 +673,4年生の漢字[未]の読みは?,み,ゆう,りく,るい,1 +674,4年生の漢字[脈]の読みは?,みゃく,よう,りょう,れい,1 +675,4年生の漢字[民]の読みは?,みん,よう,りょう,れい,1 +676,4年生の漢字[無]の読みは?,む,よく,りょう,れい,1 +677,4年生の漢字[約]の読みは?,やく,り,りん,れき,1 +678,4年生の漢字[勇]の読みは?,ゆう,りく,るい,れん,1 +679,4年生の漢字[要]の読みは?,よう,りょう,れい,ろう,1 +680,4年生の漢字[養]の読みは?,よう,りょう,れい,ろう,1 +681,4年生の漢字[浴]の読みは?,よく,りょう,れい,ろく,1 +682,4年生の漢字[利]の読みは?,り,りん,れき,あつ,1 +683,4年生の漢字[陸]の読みは?,りく,るい,れん,い,1 +684,4年生の漢字[良]の読みは?,りょう,れい,ろう,いん,1 +685,4年生の漢字[料]の読みは?,りょう,れい,ろう,えい,1 +686,4年生の漢字[量]の読みは?,りょう,れい,ろく,えい,1 +687,4年生の漢字[輪]の読みは?,りん,れき,あつ,えい,1 +688,4年生の漢字[類]の読みは?,るい,れん,い,えき,1 +689,4年生の漢字[令]の読みは?,れい,ろう,いん,えき,1 +690,4年生の漢字[冷]の読みは?,れい,ろう,えい,えき,1 +691,4年生の漢字[例]の読みは?,れい,ろく,えい,えん,1 +692,4年生の漢字[歴]の読みは?,れき,あつ,えい,おう,1 +693,4年生の漢字[連]の読みは?,れん,い,えき,おう,1 +694,4年生の漢字[老]の読みは?,ろう,いん,えき,さくら,1 +695,4年生の漢字[労]の読みは?,ろう,えい,えき,おん,1 +696,4年生の漢字[録]の読みは?,ろく,えい,えん,か,1 +697,5年生の漢字[圧]の読みは?,あつ,えい,おう,かり,1 +698,5年生の漢字[移]の読みは?,い,えき,おう,か,1 +699,5年生の漢字[因]の読みは?,いん,えき,さくら,かわ,1 +700,5年生の漢字[永]の読みは?,えい,えき,おん,か,1 +701,5年生の漢字[営]の読みは?,えい,えん,か,が,1 +702,5年生の漢字[衞]の読みは?,えい,おう,かり,かい,1 +703,5年生の漢字[易]の読みは?,えき,おう,か,かい,1 +704,5年生の漢字[益]の読みは?,えき,さくら,かわ,かく,1 +705,5年生の漢字[液]の読みは?,えき,おん,か,かく,1 +706,5年生の漢字[演]の読みは?,えん,か,が,がく,1 +707,5年生の漢字[応]の読みは?,おう,かり,かい,かん,1 +708,5年生の漢字[往]の読みは?,おう,か,かい,かん,1 +709,5年生の漢字[桜]の読みは?,さくら,かわ,かく,かん,1 +710,5年生の漢字[恩]の読みは?,おん,か,かく,がん,1 +711,5年生の漢字[可]の読みは?,か,が,がく,もと,1 +712,5年生の漢字[仮]の読みは?,かり,かい,かん,き,1 +713,5年生の漢字[価]の読みは?,か,かい,かん,き,1 +714,5年生の漢字[河]の読みは?,かわ,かく,かん,ぎ,1 +715,5年生の漢字[過]の読みは?,か,かく,がん,ぎ,1 +716,5年生の漢字[賀]の読みは?,が,がく,もと,ぎゃく,1 +717,5年生の漢字[快]の読みは?,かい,かん,き,きゅう,1 +718,5年生の漢字[解]の読みは?,かい,かん,き,きゅう,1 +719,5年生の漢字[格]の読みは?,かく,かん,ぎ,きょ,1 +720,5年生の漢字[確]の読みは?,かく,がん,ぎ,きょ,1 +721,5年生の漢字[額]の読みは?,がく,もと,ぎゃく,きょう,1 +722,5年生の漢字[刊]の読みは?,かん,き,きゅう,きん,1 +723,5年生の漢字[幹]の読みは?,かん,き,きゅう,きん,1 +724,5年生の漢字[慣]の読みは?,かん,ぎ,きょ,く,1 +725,5年生の漢字[眼]の読みは?,がん,ぎ,きょ,ぐん,1 +726,5年生の漢字[基]の読みは?,もと,ぎゃく,きょう,けい,1 +727,5年生の漢字[寄]の読みは?,き,きゅう,きん,けつ,1 +728,5年生の漢字[規]の読みは?,き,きゅう,きん,けん,1 +729,5年生の漢字[技]の読みは?,ぎ,きょ,く,けん,1 +730,5年生の漢字[義]の読みは?,ぎ,きょ,ぐん,けん,1 +731,5年生の漢字[逆]の読みは?,ぎゃく,きょう,けい,けん,1 +732,5年生の漢字[久]の読みは?,きゅう,きん,けつ,げん,1 +733,5年生の漢字[旧]の読みは?,きゅう,きん,けん,げん,1 +734,5年生の漢字[居]の読みは?,きょ,く,けん,げん,1 +735,5年生の漢字[許]の読みは?,きょ,ぐん,けん,ゆえ,1 +736,5年生の漢字[境]の読みは?,きょう,けい,けん,こ,1 +737,5年生の漢字[均]の読みは?,きん,けつ,げん,ご,1 +738,5年生の漢字[禁]の読みは?,きん,けん,げん,こう,1 +739,5年生の漢字[句]の読みは?,く,けん,げん,こう,1 +740,5年生の漢字[群]の読みは?,ぐん,けん,ゆえ,こう,1 +741,5年生の漢字[経]の読みは?,けい,けん,こ,こう,1 +742,5年生の漢字[潔]の読みは?,けつ,げん,ご,こう,1 +743,5年生の漢字[件]の読みは?,けん,げん,こう,こう,1 +744,5年生の漢字[券]の読みは?,けん,げん,こう,こう,1 +745,5年生の漢字[険]の読みは?,けん,ゆえ,こう,こん,1 +746,5年生の漢字[検]の読みは?,けん,こ,こう,さ,1 +747,5年生の漢字[限]の読みは?,げん,ご,こう,さい,1 +748,5年生の漢字[現]の読みは?,げん,こう,こう,さい,1 +749,5年生の漢字[減]の読みは?,げん,こう,こう,さい,1 +750,5年生の漢字[故]の読みは?,ゆえ,こう,こん,さい,1 +751,5年生の漢字[個]の読みは?,こ,こう,さ,ざい,1 +752,5年生の漢字[護]の読みは?,ご,こう,さい,ざい,1 +753,5年生の漢字[効]の読みは?,こう,こう,さい,ざい,1 +754,5年生の漢字[厚]の読みは?,こう,こう,さい,ざつ,1 +755,5年生の漢字[耕]の読みは?,こう,こん,さい,さん,1 +756,5年生の漢字[鉱]の読みは?,こう,さ,ざい,さん,1 +757,5年生の漢字[構]の読みは?,こう,さい,ざい,し,1 +758,5年生の漢字[興]の読みは?,こう,さい,ざい,えだ,1 +759,5年生の漢字[講]の読みは?,こう,さい,ざつ,し,1 +760,5年生の漢字[混]の読みは?,こん,さい,さん,し,1 +761,5年生の漢字[査]の読みは?,さ,ざい,さん,し,1 +762,5年生の漢字[再]の読みは?,さい,ざい,し,じ,1 +763,5年生の漢字[災]の読みは?,さい,ざい,えだ,じ,1 +764,5年生の漢字[妻]の読みは?,さい,ざつ,し,しき,1 +765,5年生の漢字[採]の読みは?,さい,さん,し,しつ,1 +766,5年生の漢字[在]の読みは?,ざい,さん,し,しゃ,1 +767,5年生の漢字[財]の読みは?,ざい,し,じ,しゃ,1 +768,5年生の漢字[罪]の読みは?,ざい,えだ,じ,じゅ,1 +769,5年生の漢字[雑]の読みは?,ざつ,し,しき,しゅう,1 +770,5年生の漢字[酸]の読みは?,さん,し,しつ,じゅつ,1 +771,5年生の漢字[賛]の読みは?,さん,し,しゃ,じゅつ,1 +772,5年生の漢字[志]の読みは?,し,じ,しゃ,じゅん,1 +773,5年生の漢字[枝]の読みは?,えだ,じ,じゅ,じょ,1 +774,5年生の漢字[師]の読みは?,し,しき,しゅう,しょう,1 +775,5年生の漢字[資]の読みは?,し,しつ,じゅつ,しょう,1 +776,5年生の漢字[飼]の読みは?,し,しゃ,じゅつ,しょう,1 +777,5年生の漢字[示]の読みは?,じ,しゃ,じゅん,じょう,1 +778,5年生の漢字[似]の読みは?,じ,じゅ,じょ,じょう,1 +779,5年生の漢字[識]の読みは?,しき,しゅう,しょう,じょう,1 +780,5年生の漢字[質]の読みは?,しつ,じゅつ,しょう,じょう,1 +781,5年生の漢字[舎]の読みは?,しゃ,じゅつ,しょう,しき,1 +782,5年生の漢字[謝]の読みは?,しゃ,じゅん,じょう,しょく,1 +783,5年生の漢字[授]の読みは?,じゅ,じょ,じょう,せい,1 +784,5年生の漢字[修]の読みは?,しゅう,しょう,じょう,せい,1 +785,5年生の漢字[述]の読みは?,じゅつ,しょう,じょう,せい,1 +786,5年生の漢字[術]の読みは?,じゅつ,しょう,しき,せい,1 +787,5年生の漢字[準]の読みは?,じゅん,じょう,しょく,せい,1 +788,5年生の漢字[序]の読みは?,じょ,じょう,せい,せい,1 +789,5年生の漢字[招]の読みは?,しょう,じょう,せい,ぜい,1 +790,5年生の漢字[承]の読みは?,しょう,じょう,せい,せき,1 +791,5年生の漢字[証]の読みは?,しょう,しき,せい,せき,1 +792,5年生の漢字[条]の読みは?,じょう,しょく,せい,せつ,1 +793,5年生の漢字[状]の読みは?,じょう,せい,せい,せつ,1 +794,5年生の漢字[常]の読みは?,じょう,せい,ぜい,ぜつ,1 +795,5年生の漢字[情]の読みは?,じょう,せい,せき,ぜつ,1 +796,5年生の漢字[織]の読みは?,しき,せい,せき,せん,1 +797,5年生の漢字[職]の読みは?,しょく,せい,せつ,そ,1 +798,5年生の漢字[制]の読みは?,せい,せい,せつ,そ,1 +799,5年生の漢字[性]の読みは?,せい,ぜい,ぜつ,そう,1 +800,5年生の漢字[政]の読みは?,せい,せき,ぜつ,ぞう,1 +801,5年生の漢字[勢]の読みは?,せい,せき,せん,ぞう,1 +802,5年生の漢字[精]の読みは?,せい,せつ,そ,ぞう,1 +803,5年生の漢字[製]の読みは?,せい,せつ,そ,そく,1 +804,5年生の漢字[税]の読みは?,ぜい,ぜつ,そう,そく,1 +805,5年生の漢字[責]の読みは?,せき,ぜつ,ぞう,ぞく,1 +806,5年生の漢字[績]の読みは?,せき,せん,ぞう,りつ,1 +807,5年生の漢字[接]の読みは?,せつ,そ,ぞう,そん,1 +808,5年生の漢字[設]の読みは?,せつ,そ,そく,たい,1 +809,5年生の漢字[舌]の読みは?,ぜつ,そう,そく,たい,1 +810,5年生の漢字[絶]の読みは?,ぜつ,ぞう,ぞく,たい,1 +811,5年生の漢字[銭]の読みは?,せん,ぞう,りつ,だん,1 +812,5年生の漢字[祖]の読みは?,そ,ぞう,そん,だん,1 +813,5年生の漢字[素]の読みは?,そ,そく,たい,ちく,1 +814,5年生の漢字[総]の読みは?,そう,そく,たい,ちょう,1 +815,5年生の漢字[造]の読みは?,ぞう,ぞく,たい,てい,1 +816,5年生の漢字[像]の読みは?,ぞう,りつ,だん,てい,1 +817,5年生の漢字[増]の読みは?,ぞう,そん,だん,てき,1 +818,5年生の漢字[則]の読みは?,そく,たい,ちく,てき,1 +819,5年生の漢字[測]の読みは?,そく,たい,ちょう,とう,1 +820,5年生の漢字[属]の読みは?,ぞく,たい,てい,どう,1 +821,5年生の漢字[率]の読みは?,りつ,だん,てい,どう,1 +822,5年生の漢字[損]の読みは?,そん,だん,てき,とく,1 +823,5年生の漢字[退]の読みは?,たい,ちく,てき,どく,1 +824,5年生の漢字[貸]の読みは?,たい,ちょう,とう,にん,1 +825,5年生の漢字[態]の読みは?,たい,てい,どう,ねん,1 +826,5年生の漢字[団]の読みは?,だん,てい,どう,のう,1 +827,5年生の漢字[断]の読みは?,だん,てき,とく,は,1 +828,5年生の漢字[築]の読みは?,ちく,てき,どく,はん,1 +829,5年生の漢字[張]の読みは?,ちょう,とう,にん,はん,1 +830,5年生の漢字[堤]の読みは?,てい,どう,ねん,はん,1 +831,5年生の漢字[程]の読みは?,てい,どう,のう,ひ,1 +832,5年生の漢字[適]の読みは?,てき,とく,は,ひ,1 +833,5年生の漢字[敵]の読みは?,てき,どく,はん,ひ,1 +834,5年生の漢字[統]の読みは?,とう,にん,はん,び,1 +835,5年生の漢字[銅]の読みは?,どう,ねん,はん,びょう,1 +836,5年生の漢字[導]の読みは?,どう,のう,ひ,ひょう,1 +837,5年生の漢字[徳]の読みは?,とく,は,ひ,ひん,1 +838,5年生の漢字[独]の読みは?,どく,はん,ひ,ふ,1 +839,5年生の漢字[任]の読みは?,にん,はん,び,ふ,1 +840,5年生の漢字[燃]の読みは?,ねん,はん,びょう,とみ,1 +841,5年生の漢字[能]の読みは?,のう,ひ,ひょう,ぶ,1 +842,5年生の漢字[破]の読みは?,は,ひ,ひん,ふく,1 +843,5年生の漢字[犯]の読みは?,はん,ひ,ふ,ふく,1 +844,5年生の漢字[判]の読みは?,はん,び,ふ,ぶつ,1 +845,5年生の漢字[版]の読みは?,はん,びょう,とみ,へん,1 +846,5年生の漢字[比]の読みは?,ひ,ひょう,ぶ,べん,1 +847,5年生の漢字[肥]の読みは?,ひ,ひん,ふく,ほ,1 +848,5年生の漢字[非]の読みは?,ひ,ふ,ふく,はか,1 +849,5年生の漢字[備]の読みは?,び,ふ,ぶつ,ほう,1 +850,5年生の漢字[俵]の読みは?,びょう,とみ,へん,ほう,1 +851,5年生の漢字[評]の読みは?,ひょう,ぶ,べん,ぼう,1 +852,5年生の漢字[貧]の読みは?,ひん,ふく,ほ,ぼう,1 +853,5年生の漢字[布]の読みは?,ふ,ふく,はか,ぼう,1 +854,5年生の漢字[婦]の読みは?,ふ,ぶつ,ほう,む,1 +855,5年生の漢字[富]の読みは?,とみ,へん,ほう,む,1 +856,5年生の漢字[武]の読みは?,ぶ,べん,ぼう,めい,1 +857,5年生の漢字[復]の読みは?,ふく,ほ,ぼう,めん,1 +858,5年生の漢字[複]の読みは?,ふく,はか,ぼう,ゆ,1 +859,5年生の漢字[仏]の読みは?,ぶつ,ほう,む,よ,1 +860,5年生の漢字[編]の読みは?,へん,ほう,む,よ,1 +861,5年生の漢字[弁]の読みは?,べん,ぼう,めい,よう,1 +862,5年生の漢字[保]の読みは?,ほ,ぼう,めん,りゃく,1 +863,5年生の漢字[墓]の読みは?,はか,ぼう,ゆ,りゅう,1 +864,5年生の漢字[報]の読みは?,ほう,む,よ,りょう,1 +865,5年生の漢字[豊]の読みは?,ほう,む,よ,い,1 +866,5年生の漢字[防]の読みは?,ぼう,めい,よう,い,1 +867,5年生の漢字[貿]の読みは?,ぼう,めん,りゃく,いき,1 +868,5年生の漢字[暴]の読みは?,ぼう,ゆ,りゅう,う,1 +869,5年生の漢字[務]の読みは?,む,よ,りょう,えい,1 +870,5年生の漢字[夢]の読みは?,む,よ,い,えん,1 +871,5年生の漢字[迷]の読みは?,めい,よう,い,えん,1 +872,5年生の漢字[綿]の読みは?,めん,りゃく,いき,が,1 +873,5年生の漢字[輸]の読みは?,ゆ,りゅう,う,はい,1 +874,5年生の漢字[余]の読みは?,よ,りょう,えい,かく,1 +875,5年生の漢字[預]の読みは?,よ,い,えん,かく,1 +876,5年生の漢字[容]の読みは?,よう,い,えん,かく,1 +877,5年生の漢字[略]の読みは?,りゃく,いき,が,かつ,1 +878,5年生の漢字[留]の読みは?,りゅう,う,はい,かぶ,1 +879,5年生の漢字[領]の読みは?,りょう,えい,かく,かん,1 +880,6年生の漢字[異]の読みは?,い,えん,かく,かん,1 +881,6年生の漢字[遺]の読みは?,い,えん,かく,かん,1 +882,6年生の漢字[域]の読みは?,いき,が,かつ,かん,1 +883,6年生の漢字[宇]の読みは?,う,はい,かぶ,き,1 +884,6年生の漢字[映]の読みは?,えい,かく,かん,き,1 +885,6年生の漢字[延]の読みは?,えん,かく,かん,き,1 +886,6年生の漢字[沿]の読みは?,えん,かく,かん,き,1 +887,6年生の漢字[我]の読みは?,が,かつ,かん,ぎ,1 +888,6年生の漢字[灰]の読みは?,はい,かぶ,き,きゅう,1 +889,6年生の漢字[拡]の読みは?,かく,かん,き,きょう,1 +890,6年生の漢字[革]の読みは?,かく,かん,き,きょう,1 +891,6年生の漢字[閣]の読みは?,かく,かん,き,きょう,1 +892,6年生の漢字[割]の読みは?,かつ,かん,ぎ,きん,1 +893,6年生の漢字[株]の読みは?,かぶ,き,きゅう,きん,1 +894,6年生の漢字[干]の読みは?,かん,き,きょう,けい,1 +895,6年生の漢字[巻]の読みは?,かん,き,きょう,けい,1 +896,6年生の漢字[看]の読みは?,かん,き,きょう,けい,1 +897,6年生の漢字[簡]の読みは?,かん,ぎ,きん,げき,1 +898,6年生の漢字[危]の読みは?,き,きゅう,きん,げき,1 +899,6年生の漢字[机]の読みは?,き,きょう,けい,あな,1 +900,6年生の漢字[揮]の読みは?,き,きょう,けい,きぬ,1 +901,6年生の漢字[貴]の読みは?,き,きょう,けい,けん,1 +902,6年生の漢字[疑]の読みは?,ぎ,きん,げき,けん,1 +903,6年生の漢字[吸]の読みは?,きゅう,きん,げき,げん,1 +904,6年生の漢字[供]の読みは?,きょう,けい,あな,げん,1 +905,6年生の漢字[胸]の読みは?,きょう,けい,きぬ,こ,1 +906,6年生の漢字[郷]の読みは?,きょう,けい,けん,こ,1 +907,6年生の漢字[勤]の読みは?,きん,げき,けん,ご,1 +908,6年生の漢字[筋]の読みは?,きん,げき,げん,ごう,1 +909,6年生の漢字[系]の読みは?,けい,あな,げん,こう,1 +910,6年生の漢字[敬]の読みは?,けい,きぬ,こ,こう,1 +911,6年生の漢字[警]の読みは?,けい,けん,こ,こう,1 +912,6年生の漢字[劇]の読みは?,げき,けん,ご,こう,1 +913,6年生の漢字[激]の読みは?,げき,げん,ごう,こう,1 +914,6年生の漢字[穴]の読みは?,あな,げん,こう,こく,1 +915,6年生の漢字[絹]の読みは?,きぬ,こ,こう,こく,1 +916,6年生の漢字[権]の読みは?,けん,こ,こう,こつ,1 +917,6年生の漢字[憲]の読みは?,けん,ご,こう,こん,1 +918,6年生の漢字[源]の読みは?,げん,ごう,こう,さ,1 +919,6年生の漢字[厳]の読みは?,げん,こう,こく,ざ,1 +920,6年生の漢字[己]の読みは?,こ,こう,こく,さい,1 +921,6年生の漢字[呼]の読みは?,こ,こう,こつ,さい,1 +922,6年生の漢字[誤]の読みは?,ご,こう,こん,さく,1 +923,6年生の漢字[后]の読みは?,ごう,こう,さ,さつ,1 +924,6年生の漢字[考]の読みは?,こう,こく,ざ,かいこ,1 +925,6年生の漢字[皇]の読みは?,こう,こく,さい,し,1 +926,6年生の漢字[紅]の読みは?,こう,こつ,さい,し,1 +927,6年生の漢字[降]の読みは?,こう,こん,さく,し,1 +928,6年生の漢字[鋼]の読みは?,こう,さ,さつ,し,1 +929,6年生の漢字[刻]の読みは?,こく,ざ,かいこ,し,1 +930,6年生の漢字[穀]の読みは?,こく,さい,し,し,1 +931,6年生の漢字[骨]の読みは?,こつ,さい,し,じ,1 +932,6年生の漢字[困]の読みは?,こん,さく,し,しゃ,1 +933,6年生の漢字[砂]の読みは?,さ,さつ,し,しゃ,1 +934,6年生の漢字[座]の読みは?,ざ,かいこ,し,しゃく,1 +935,6年生の漢字[済]の読みは?,さい,し,し,じゃく,1 +936,6年生の漢字[裁]の読みは?,さい,し,じ,じゅ,1 +937,6年生の漢字[策]の読みは?,さく,し,しゃ,しゅう,1 +938,6年生の漢字[冊]の読みは?,さつ,し,しゃ,しゅう,1 +939,6年生の漢字[蚕]の読みは?,かいこ,し,しゃく,しゅう,1 +940,6年生の漢字[至]の読みは?,し,し,じゃく,しゅう,1 +941,6年生の漢字[私]の読みは?,し,じ,じゅ,じゅう,1 +942,6年生の漢字[姿]の読みは?,し,しゃ,しゅう,じゅう,1 +943,6年生の漢字[視]の読みは?,し,しゃ,しゅう,しゅく,1 +944,6年生の漢字[詞]の読みは?,し,しゃく,しゅう,じゅく,1 +945,6年生の漢字[誌]の読みは?,し,じゃく,しゅう,じゅん,1 +946,6年生の漢字[磁]の読みは?,じ,じゅ,じゅう,ところ,1 +947,6年生の漢字[射]の読みは?,しゃ,しゅう,じゅう,しょ,1 +948,6年生の漢字[捨]の読みは?,しゃ,しゅう,しゅく,しょ,1 +949,6年生の漢字[尺]の読みは?,しゃく,しゅう,じゅく,じょ,1 +950,6年生の漢字[若]の読みは?,じゃく,しゅう,じゅん,しょう,1 +951,6年生の漢字[樹]の読みは?,じゅ,じゅう,ところ,しょう,1 +952,6年生の漢字[収]の読みは?,しゅう,じゅう,しょ,しょう,1 +953,6年生の漢字[宗]の読みは?,しゅう,しゅく,しょ,じょう,1 +954,6年生の漢字[就]の読みは?,しゅう,じゅく,じょ,じょう,1 +955,6年生の漢字[衆]の読みは?,しゅう,じゅん,しょう,しん,1 +956,6年生の漢字[従]の読みは?,じゅう,ところ,しょう,じん,1 +957,6年生の漢字[縦]の読みは?,じゅう,しょ,しょう,すい,1 +958,6年生の漢字[縮]の読みは?,しゅく,しょ,じょう,すい,1 +959,6年生の漢字[熟]の読みは?,じゅく,じょ,じょう,すん,1 +960,6年生の漢字[純]の読みは?,じゅん,しょう,しん,せい,1 +961,6年生の漢字[処]の読みは?,ところ,しょう,じん,せい,1 +962,6年生の漢字[署]の読みは?,しょ,しょう,すい,せい,1 +963,6年生の漢字[諸]の読みは?,しょ,じょう,すい,せん,1 +964,6年生の漢字[除]の読みは?,じょ,じょう,すん,せん,1 +965,6年生の漢字[将]の読みは?,しょう,しん,せい,せん,1 +966,6年生の漢字[傷]の読みは?,しょう,じん,せい,せん,1 +967,6年生の漢字[障]の読みは?,しょう,すい,せい,せん,1 +968,6年生の漢字[城]の読みは?,じょう,すい,せん,ぜん,1 +969,6年生の漢字[蒸]の読みは?,じょう,すん,せん,そう,1 +970,6年生の漢字[針]の読みは?,しん,せい,せん,まど,1 +971,6年生の漢字[仁]の読みは?,じん,せい,せん,そう,1 +972,6年生の漢字[垂]の読みは?,すい,せい,せん,そう,1 +973,6年生の漢字[推]の読みは?,すい,せん,ぜん,そう,1 +974,6年生の漢字[寸]の読みは?,すん,せん,そう,そう,1 +975,6年生の漢字[盛]の読みは?,せい,せん,まど,ぞう,1 +976,6年生の漢字[聖]の読みは?,せい,せん,そう,ぞう,1 +977,6年生の漢字[誠]の読みは?,せい,せん,そう,ぞん,1 +978,6年生の漢字[宣]の読みは?,せん,ぜん,そう,そん,1 +979,6年生の漢字[専]の読みは?,せん,そう,そう,たく,1 +980,6年生の漢字[泉]の読みは?,せん,まど,ぞう,たん,1 +981,6年生の漢字[洗]の読みは?,せん,そう,ぞう,たん,1 +982,6年生の漢字[染]の読みは?,せん,そう,ぞん,たん,1 +983,6年生の漢字[善]の読みは?,ぜん,そう,そん,だん,1 +984,6年生の漢字[奏]の読みは?,そう,そう,たく,だん,1 +985,6年生の漢字[窓]の読みは?,まど,ぞう,たん,ち,1 +986,6年生の漢字[創]の読みは?,そう,ぞう,たん,ちゅう,1 +987,6年生の漢字[装]の読みは?,そう,ぞん,たん,ちゅう,1 +988,6年生の漢字[層]の読みは?,そう,そん,だん,ちょ,1 +989,6年生の漢字[操]の読みは?,そう,たく,だん,ちょう,1 +990,6年生の漢字[蔵]の読みは?,ぞう,たん,ち,ちょう,1 +991,6年生の漢字[臓]の読みは?,ぞう,たん,ちゅう,しお,1 +992,6年生の漢字[存]の読みは?,ぞん,たん,ちゅう,ちん,1 +993,6年生の漢字[尊]の読みは?,そん,だん,ちょ,つう,1 +994,6年生の漢字[宅]の読みは?,たく,だん,ちょう,てん,1 +995,6年生の漢字[担]の読みは?,たん,ち,ちょう,とう,1 +996,6年生の漢字[探]の読みは?,たん,ちゅう,しお,とう,1 +997,6年生の漢字[誕]の読みは?,たん,ちゅう,ちん,とう,1 +998,6年生の漢字[段]の読みは?,だん,ちょ,つう,かい,1 +999,6年生の漢字[暖]の読みは?,だん,ちょう,てん,なん,1 +1000,6年生の漢字[値]の読みは?,ち,ちょう,とう,にゅう,1 +1001,6年生の漢字[宙]の読みは?,ちゅう,しお,とう,にん,1 +1002,6年生の漢字[忠]の読みは?,ちゅう,ちん,とう,のう,1 +1003,6年生の漢字[著]の読みは?,ちょ,つう,かい,のう,1 +1004,6年生の漢字[庁]の読みは?,ちょう,てん,なん,は,1 +1005,6年生の漢字[頂]の読みは?,ちょう,とう,にゅう,はい,1 +1006,6年生の漢字[潮]の読みは?,しお,とう,にん,はい,1 +1007,6年生の漢字[賃]の読みは?,ちん,とう,のう,はい,1 +1008,6年生の漢字[痛]の読みは?,つう,かい,のう,はい,1 +1009,6年生の漢字[展]の読みは?,てん,なん,は,はん,1 +1010,6年生の漢字[討]の読みは?,とう,にゅう,はい,ばん,1 +1011,6年生の漢字[党]の読みは?,とう,にん,はい,いな,1 +1012,6年生の漢字[糖]の読みは?,とう,のう,はい,ひ,1 +1013,6年生の漢字[届]の読みは?,かい,のう,はい,ひ,1 +1014,6年生の漢字[難]の読みは?,なん,は,はん,ふく,1 +1015,6年生の漢字[乳]の読みは?,にゅう,はい,ばん,ふん,1 +1016,6年生の漢字[認]の読みは?,にん,はい,いな,なみ,1 +1017,6年生の漢字[納]の読みは?,のう,はい,ひ,へい,1 +1018,6年生の漢字[脳]の読みは?,のう,はい,ひ,へい,1 +1019,6年生の漢字[派]の読みは?,は,はん,ふく,へん,1 +1020,6年生の漢字[拝]の読みは?,はい,ばん,ふん,ほ,1 +1021,6年生の漢字[背]の読みは?,はい,いな,なみ,ぼ,1 +1022,6年生の漢字[肺]の読みは?,はい,ひ,へい,ほう,1 +1023,6年生の漢字[俳]の読みは?,はい,ひ,へい,ほう,1 +1024,6年生の漢字[班]の読みは?,はん,ふく,へん,ぼう,1 +1025,6年生の漢字[晩]の読みは?,ばん,ふん,ほ,ぼう,1 +1026,6年生の漢字[否]の読みは?,いな,なみ,ぼ,ぼう,1 +1027,6年生の漢字[批]の読みは?,ひ,へい,ほう,まい,1 +1028,6年生の漢字[秘]の読みは?,ひ,へい,ほう,まく,1 +1029,6年生の漢字[腹]の読みは?,ふく,へん,ぼう,みつ,1 +1030,6年生の漢字[奮]の読みは?,ふん,はい,にゅう,とう,1 +1031,6年生の漢字[並]の読みは?,なみ,はい,にん,とう,1 +1032,6年生の漢字[陛]の読みは?,へい,はい,のう,とう,1 +1033,6年生の漢字[閉]の読みは?,へい,はい,のう,かい,1 +1034,6年生の漢字[片]の読みは?,へん,はん,は,なん,1 +1035,6年生の漢字[補]の読みは?,ほ,ばん,はい,にゅう,1 +1036,6年生の漢字[暮]の読みは?,ぼ,いな,はい,にん,1 +1037,6年生の漢字[宝]の読みは?,ほう,ひ,はい,のう,1 +1038,6年生の漢字[訪]の読みは?,ほう,ひ,はい,のう,1 +1039,6年生の漢字[亡]の読みは?,ぼう,ふく,はん,は,1 +1040,6年生の漢字[忘]の読みは?,ぼう,ふん,ばん,はい,1 +1041,6年生の漢字[棒]の読みは?,ぼう,なみ,いな,はい,1 +1042,6年生の漢字[枚]の読みは?,まい,へい,ひ,はい,1 +1043,6年生の漢字[幕]の読みは?,まく,へい,ひ,はい,1 +1044,6年生の漢字[密]の読みは?,みつ,へん,ふく,はん,1 +1045,6年生の漢字[盟]の読みは?,めい,ほ,ふん,ばん,1 +1046,6年生の漢字[模]の読みは?,も,ぼ,なみ,いな,1 +1047,6年生の漢字[訳]の読みは?,やく,ほう,へい,ひ,1 +1048,6年生の漢字[郵]の読みは?,ゆう,ほう,へい,ひ,1 +1049,6年生の漢字[優]の読みは?,ゆう,ぼう,へん,ふく,1 +1050,6年生の漢字[幼]の読みは?,よう,ぼう,ほ,ふん,1 +1051,6年生の漢字[欲]の読みは?,よく,ぼう,ぼ,なみ,1 +1052,6年生の漢字[翌]の読みは?,よく,まい,ほう,へい,1 +1053,6年生の漢字[乱]の読みは?,らん,まく,ほう,へい,1 +1054,6年生の漢字[卵]の読みは?,らん,みつ,ぼう,へん,1 +1055,6年生の漢字[覧]の読みは?,らん,めい,ぼう,ほ,1 +1056,6年生の漢字[裏]の読みは?,うら,も,ぼう,ぼ,1 +1057,6年生の漢字[律]の読みは?,りつ,やく,まい,ほう,1 +1058,6年生の漢字[臨]の読みは?,りん,ゆう,まく,ほう,1 +1059,6年生の漢字[朗]の読みは?,ろう,ゆう,みつ,ぼう,1 +1060,6年生の漢字[論]の読みは?,ろん,よう,めい,ぼう,1 +1061,1年生の漢字で[こ]と読むのは?,子,王,気,空,1 +1062,1年生の漢字で[いち]と読むのは?,一,音,九,月,1 +1063,1年生の漢字で[みぎ]と読むのは?,右,下,休,犬,1 +1064,1年生の漢字で[あめ]と読むのは?,雨,花,玉,見,1 +1065,1年生の漢字で[えん]と読むのは?,円,学,金,五,1 +1066,1年生の漢字で[おう]と読むのは?,王,気,空,口,1 +1067,1年生の漢字で[おと]と読むのは?,音,九,月,校,1 +1068,1年生の漢字で[した]と読むのは?,下,休,犬,左,1 +1069,1年生の漢字で[はな]と読むのは?,花,玉,見,三,1 +1070,1年生の漢字で[がく]と読むのは?,学,金,五,山,1 +1071,1年生の漢字で[き]と読むのは?,気,空,口,四,1 +1072,1年生の漢字で[きゅう]と読むのは?,九,月,校,糸,1 +1073,1年生の漢字で[きゅう]と読むのは?,休,犬,左,字,1 +1074,1年生の漢字で[たま]と読むのは?,玉,見,三,耳,1 +1075,1年生の漢字で[きん]と読むのは?,金,五,山,七,1 +1076,1年生の漢字で[そら]と読むのは?,空,口,四,車,1 +1077,1年生の漢字で[つき]と読むのは?,月,校,糸,手,1 +1078,1年生の漢字で[いぬ]と読むのは?,犬,左,字,十,1 +1079,1年生の漢字で[けん]と読むのは?,見,三,耳,出,1 +1080,1年生の漢字で[ご]と読むのは?,五,山,七,女,1 +1081,1年生の漢字で[くち]と読むのは?,口,四,車,小,1 +1082,1年生の漢字で[こう]と読むのは?,校,糸,手,上,1 +1083,1年生の漢字で[ひだり]と読むのは?,左,字,十,森,1 +1084,1年生の漢字で[さん]と読むのは?,三,耳,出,人,1 +1085,1年生の漢字で[やま]と読むのは?,山,七,女,水,1 +1086,1年生の漢字で[よん]と読むのは?,四,車,小,正,1 +1087,1年生の漢字で[いと]と読むのは?,糸,手,上,生,1 +1088,1年生の漢字で[じ]と読むのは?,字,十,森,青,1 +1089,1年生の漢字で[みみ]と読むのは?,耳,出,人,夕,1 +1090,1年生の漢字で[なな]と読むのは?,七,女,水,石,1 +1091,1年生の漢字で[くるま]と読むのは?,車,小,正,赤,1 +1092,1年生の漢字で[て]と読むのは?,手,上,生,千,1 +1093,1年生の漢字で[じゅう]と読むのは?,十,森,青,川,1 +1094,1年生の漢字で[しゅつ]と読むのは?,出,人,夕,先,1 +1095,1年生の漢字で[おんな]と読むのは?,女,水,石,早,1 +1096,1年生の漢字で[しょう]と読むのは?,小,正,赤,草,1 +1097,1年生の漢字で[うえ]と読むのは?,上,生,千,足,1 +1098,1年生の漢字で[もり]と読むのは?,森,青,川,村,1 +1099,1年生の漢字で[ひと]と読むのは?,人,夕,先,大,1 +1100,1年生の漢字で[みず]と読むのは?,水,石,早,男,1 +1101,1年生の漢字で[しょう]と読むのは?,正,赤,草,竹,1 +1102,1年生の漢字で[しょう]と読むのは?,生,千,足,中,1 +1103,1年生の漢字で[あお]と読むのは?,青,川,村,虫,1 +1104,1年生の漢字で[ゆう]と読むのは?,夕,先,大,町,1 +1105,1年生の漢字で[いし]と読むのは?,石,早,男,天,1 +1106,1年生の漢字で[あか]と読むのは?,赤,草,竹,田,1 +1107,1年生の漢字で[せん]と読むのは?,千,足,中,土,1 +1108,1年生の漢字で[かわ]と読むのは?,川,村,虫,二,1 +1109,1年生の漢字で[さき]と読むのは?,先,大,町,日,1 +1110,1年生の漢字で[そう]と読むのは?,早,男,天,入,1 +1111,1年生の漢字で[そう]と読むのは?,草,竹,田,年,1 +1112,1年生の漢字で[あし]と読むのは?,足,中,土,白,1 +1113,1年生の漢字で[むら]と読むのは?,村,虫,二,八,1 +1114,1年生の漢字で[だい]と読むのは?,大,町,日,百,1 +1115,1年生の漢字で[おとこ]と読むのは?,男,天,入,文,1 +1116,1年生の漢字で[たけ]と読むのは?,竹,田,年,木,1 +1117,1年生の漢字で[ちゅう]と読むのは?,中,土,白,本,1 +1118,1年生の漢字で[むし]と読むのは?,虫,二,八,名,1 +1119,1年生の漢字で[まち]と読むのは?,町,日,百,目,1 +1120,1年生の漢字で[てん]と読むのは?,天,入,文,立,1 +1121,1年生の漢字で[た]と読むのは?,田,年,木,力,1 +1122,1年生の漢字で[つち]と読むのは?,土,白,本,林,1 +1123,1年生の漢字で[に]と読むのは?,二,八,名,六,1 +1124,1年生の漢字で[にち]と読むのは?,日,百,目,引,1 +1125,1年生の漢字で[にゅう]と読むのは?,入,文,立,羽,1 +1126,1年生の漢字で[とし]と読むのは?,年,木,力,雲,1 +1127,1年生の漢字で[しろ]と読むのは?,白,本,林,園,1 +1128,1年生の漢字で[はち]と読むのは?,八,名,六,遠,1 +1129,1年生の漢字で[ひゃく]と読むのは?,百,目,引,何,1 +1130,1年生の漢字で[ぶん]と読むのは?,文,立,羽,科,1 +1131,1年生の漢字で[き]と読むのは?,木,力,雲,夏,1 +1132,1年生の漢字で[ほん]と読むのは?,本,林,園,家,1 +1133,1年生の漢字で[めい]と読むのは?,名,六,遠,歌,1 +1134,1年生の漢字で[め]と読むのは?,目,引,何,画,1 +1135,1年生の漢字で[りつ]と読むのは?,立,羽,科,回,1 +1136,1年生の漢字で[ちから]と読むのは?,力,雲,夏,会,1 +1137,1年生の漢字で[はやし]と読むのは?,林,園,家,海,1 +1138,1年生の漢字で[ろく]と読むのは?,六,遠,歌,絵,1 +1139,2年生の漢字で[いん]と読むのは?,引,何,画,外,1 +1140,2年生の漢字で[はね]と読むのは?,羽,科,回,角,1 +1141,2年生の漢字で[くも]と読むのは?,雲,夏,会,楽,1 +1142,2年生の漢字で[えん]と読むのは?,園,家,海,活,1 +1143,2年生の漢字で[えん]と読むのは?,遠,歌,絵,間,1 +1144,2年生の漢字で[なに]と読むのは?,何,画,外,岩,1 +1145,2年生の漢字で[か]と読むのは?,科,回,角,顔,1 +1146,2年生の漢字で[なつ]と読むのは?,夏,会,楽,汽,1 +1147,2年生の漢字で[いえ]と読むのは?,家,海,活,記,1 +1148,2年生の漢字で[うた]と読むのは?,歌,絵,間,帰,1 +1149,2年生の漢字で[が]と読むのは?,画,外,岩,弓,1 +1150,2年生の漢字で[かい]と読むのは?,回,角,顔,牛,1 +1151,2年生の漢字で[かい]と読むのは?,会,楽,汽,魚,1 +1152,2年生の漢字で[うみ]と読むのは?,海,活,記,京,1 +1153,2年生の漢字で[え]と読むのは?,絵,間,帰,強,1 +1154,2年生の漢字で[そと]と読むのは?,外,岩,弓,教,1 +1155,2年生の漢字で[かく]と読むのは?,角,顔,牛,近,1 +1156,2年生の漢字で[らく]と読むのは?,楽,汽,魚,兄,1 +1157,2年生の漢字で[かつ]と読むのは?,活,記,京,形,1 +1158,2年生の漢字で[あいだ]と読むのは?,間,帰,強,計,1 +1159,2年生の漢字で[いわ]と読むのは?,岩,弓,教,元,1 +1160,2年生の漢字で[かお]と読むのは?,顔,牛,近,言,1 +1161,2年生の漢字で[き]と読むのは?,汽,魚,兄,原,1 +1162,2年生の漢字で[き]と読むのは?,記,京,形,戸,1 +1163,2年生の漢字で[き]と読むのは?,帰,強,計,古,1 +1164,2年生の漢字で[ゆみ]と読むのは?,弓,教,元,牛,1 +1165,2年生の漢字で[うし]と読むのは?,牛,近,言,後,1 +1166,2年生の漢字で[さかな]と読むのは?,魚,兄,原,語,1 +1167,2年生の漢字で[けい]と読むのは?,京,形,戸,工,1 +1168,2年生の漢字で[きょう]と読むのは?,強,計,古,公,1 +1169,2年生の漢字で[きょう]と読むのは?,教,元,牛,広,1 +1170,2年生の漢字で[きん]と読むのは?,近,言,後,交,1 +1171,2年生の漢字で[あに]と読むのは?,兄,原,語,光,1 +1172,2年生の漢字で[かたち]と読むのは?,形,戸,工,考,1 +1173,2年生の漢字で[けい]と読むのは?,計,古,公,行,1 +1174,2年生の漢字で[もと]と読むのは?,元,牛,広,高,1 +1175,2年生の漢字で[げん]と読むのは?,言,後,交,黄,1 +1176,2年生の漢字で[げん]と読むのは?,原,語,光,合,1 +1177,2年生の漢字で[と]と読むのは?,戸,工,考,谷,1 +1178,2年生の漢字で[こ]と読むのは?,古,公,行,国,1 +1179,2年生の漢字で[うし]と読むのは?,牛,広,高,黒,1 +1180,2年生の漢字で[あと]と読むのは?,後,交,黄,今,1 +1181,2年生の漢字で[ご]と読むのは?,語,光,合,才,1 +1182,2年生の漢字で[こう]と読むのは?,工,考,谷,細,1 +1183,2年生の漢字で[こう]と読むのは?,公,行,国,作,1 +1184,2年生の漢字で[こう]と読むのは?,広,高,黒,算,1 +1185,2年生の漢字で[こう]と読むのは?,交,黄,今,止,1 +1186,2年生の漢字で[ひかり]と読むのは?,光,合,才,市,1 +1187,2年生の漢字で[こう]と読むのは?,考,谷,細,矢,1 +1188,2年生の漢字で[ぎょう]と読むのは?,行,国,作,姉,1 +1189,2年生の漢字で[こう]と読むのは?,高,黒,算,思,1 +1190,2年生の漢字で[き]と読むのは?,黄,今,止,紙,1 +1191,2年生の漢字で[ごう]と読むのは?,合,才,市,寺,1 +1192,2年生の漢字で[たに]と読むのは?,谷,細,矢,自,1 +1193,2年生の漢字で[くに]と読むのは?,国,作,姉,時,1 +1194,2年生の漢字で[くろ]と読むのは?,黒,算,思,室,1 +1195,2年生の漢字で[いま]と読むのは?,今,止,紙,社,1 +1196,2年生の漢字で[さい]と読むのは?,才,市,寺,弱,1 +1197,2年生の漢字で[さい]と読むのは?,細,矢,自,首,1 +1198,2年生の漢字で[さく]と読むのは?,作,姉,時,秋,1 +1199,2年生の漢字で[さん]と読むのは?,算,思,室,週,1 +1200,2年生の漢字で[し]と読むのは?,止,紙,社,春,1 +1201,2年生の漢字で[し]と読むのは?,市,寺,弱,書,1 +1202,2年生の漢字で[や]と読むのは?,矢,自,首,少,1 +1203,2年生の漢字で[あね]と読むのは?,姉,時,秋,場,1 +1204,2年生の漢字で[し]と読むのは?,思,室,週,色,1 +1205,2年生の漢字で[かみ]と読むのは?,紙,社,春,心,1 +1206,2年生の漢字で[てら]と読むのは?,寺,弱,書,食,1 +1207,2年生の漢字で[じ]と読むのは?,自,首,少,新,1 +1208,2年生の漢字で[じ]と読むのは?,時,秋,場,親,1 +1209,2年生の漢字で[しつ]と読むのは?,室,週,色,図,1 +1210,2年生の漢字で[しゃ]と読むのは?,社,春,心,数,1 +1211,2年生の漢字で[じゃく]と読むのは?,弱,書,食,西,1 +1212,2年生の漢字で[くび]と読むのは?,首,少,新,声,1 +1213,2年生の漢字で[あき]と読むのは?,秋,場,親,星,1 +1214,2年生の漢字で[しゅう]と読むのは?,週,色,図,晴,1 +1215,2年生の漢字で[はる]と読むのは?,春,心,数,切,1 +1216,2年生の漢字で[しょ]と読むのは?,書,食,西,雪,1 +1217,2年生の漢字で[しょう]と読むのは?,少,新,声,船,1 +1218,2年生の漢字で[ば]と読むのは?,場,親,星,線,1 +1219,2年生の漢字で[いろ]と読むのは?,色,図,晴,前,1 +1220,2年生の漢字で[こころ]と読むのは?,心,数,切,組,1 +1221,2年生の漢字で[しょく]と読むのは?,食,西,雪,走,1 +1222,2年生の漢字で[しん]と読むのは?,新,声,船,多,1 +1223,2年生の漢字で[おや]と読むのは?,親,星,線,太,1 +1224,2年生の漢字で[ず]と読むのは?,図,晴,前,体,1 +1225,2年生の漢字で[かず]と読むのは?,数,切,組,台,1 +1226,2年生の漢字で[にし]と読むのは?,西,雪,走,地,1 +1227,2年生の漢字で[こえ]と読むのは?,声,船,多,池,1 +1228,2年生の漢字で[ほし]と読むのは?,星,線,太,知,1 +1229,2年生の漢字で[はれ]と読むのは?,晴,前,体,茶,1 +1230,2年生の漢字で[せつ]と読むのは?,切,組,台,昼,1 +1231,2年生の漢字で[ゆき]と読むのは?,雪,走,地,長,1 +1232,2年生の漢字で[ふね]と読むのは?,船,多,池,鳥,1 +1233,2年生の漢字で[せん]と読むのは?,線,太,知,朝,1 +1234,2年生の漢字で[まえ]と読むのは?,前,体,茶,直,1 +1235,2年生の漢字で[くみ]と読むのは?,組,台,昼,通,1 +1236,2年生の漢字で[そう]と読むのは?,走,地,長,弟,1 +1237,2年生の漢字で[た]と読むのは?,多,池,鳥,店,1 +1238,2年生の漢字で[た]と読むのは?,太,知,朝,点,1 +1239,2年生の漢字で[たい]と読むのは?,体,茶,直,電,1 +1240,2年生の漢字で[だい]と読むのは?,台,昼,通,刀,1 +1241,2年生の漢字で[ち]と読むのは?,地,長,弟,冬,1 +1242,2年生の漢字で[いけ]と読むのは?,池,鳥,店,当,1 +1243,2年生の漢字で[ち]と読むのは?,知,朝,点,東,1 +1244,2年生の漢字で[ちゃ]と読むのは?,茶,直,電,答,1 +1245,2年生の漢字で[ひる]と読むのは?,昼,通,刀,頭,1 +1246,2年生の漢字で[ちょう]と読むのは?,長,弟,冬,同,1 +1247,2年生の漢字で[とり]と読むのは?,鳥,店,当,道,1 +1248,2年生の漢字で[あさ]と読むのは?,朝,点,東,読,1 +1249,2年生の漢字で[ちょく]と読むのは?,直,電,答,内,1 +1250,2年生の漢字で[つう]と読むのは?,通,刀,頭,南,1 +1251,2年生の漢字で[おとうと]と読むのは?,弟,冬,同,肉,1 +1252,2年生の漢字で[みせ]と読むのは?,店,当,道,馬,1 +1253,2年生の漢字で[てん]と読むのは?,点,東,読,売,1 +1254,2年生の漢字で[でん]と読むのは?,電,答,内,買,1 +1255,2年生の漢字で[かたな]と読むのは?,刀,頭,南,麦,1 +1256,2年生の漢字で[ふゆ]と読むのは?,冬,同,肉,半,1 +1257,2年生の漢字で[とう]と読むのは?,当,道,馬,番,1 +1258,2年生の漢字で[ひがし]と読むのは?,東,読,売,父,1 +1259,2年生の漢字で[とう]と読むのは?,答,内,買,風,1 +1260,2年生の漢字で[あたま]と読むのは?,頭,南,麦,分,1 +1261,2年生の漢字で[どう]と読むのは?,同,肉,半,聞,1 +1262,2年生の漢字で[みち]と読むのは?,道,馬,番,米,1 +1263,2年生の漢字で[どく]と読むのは?,読,売,父,歩,1 +1264,2年生の漢字で[うち]と読むのは?,内,買,風,母,1 +1265,2年生の漢字で[みなみ]と読むのは?,南,麦,分,方,1 +1266,2年生の漢字で[にく]と読むのは?,肉,半,聞,北,1 +1267,2年生の漢字で[うま]と読むのは?,馬,番,米,毎,1 +1268,2年生の漢字で[ばい]と読むのは?,売,父,歩,妹,1 +1269,2年生の漢字で[ばい]と読むのは?,買,風,母,万,1 +1270,2年生の漢字で[むぎ]と読むのは?,麦,分,方,明,1 +1271,2年生の漢字で[はん]と読むのは?,半,聞,北,鳴,1 +1272,2年生の漢字で[ばん]と読むのは?,番,米,毎,毛,1 +1273,2年生の漢字で[ちち]と読むのは?,父,歩,妹,門,1 +1274,2年生の漢字で[かぜ]と読むのは?,風,母,万,夜,1 +1275,2年生の漢字で[ぶん]と読むのは?,分,方,明,野,1 +1276,2年生の漢字で[ぶん]と読むのは?,聞,北,鳴,友,1 +1277,2年生の漢字で[こめ]と読むのは?,米,毎,毛,用,1 +1278,2年生の漢字で[ほ]と読むのは?,歩,妹,門,曜,1 +1279,2年生の漢字で[はは]と読むのは?,母,万,夜,来,1 +1280,2年生の漢字で[ほう]と読むのは?,方,明,野,里,1 +1281,2年生の漢字で[きた]と読むのは?,北,鳴,友,理,1 +1282,2年生の漢字で[ごと]と読むのは?,毎,毛,用,話,1 +1283,2年生の漢字で[いもうと]と読むのは?,妹,門,曜,悪,1 +1284,2年生の漢字で[まん]と読むのは?,万,夜,来,安,1 +1285,2年生の漢字で[みょう]と読むのは?,明,野,里,暗,1 +1286,2年生の漢字で[なる]と読むのは?,鳴,友,理,医,1 +1287,2年生の漢字で[け]と読むのは?,毛,用,話,委,1 +1288,2年生の漢字で[もん]と読むのは?,門,曜,悪,意,1 +1289,2年生の漢字で[よる]と読むのは?,夜,来,安,育,1 +1290,2年生の漢字で[の]と読むのは?,野,里,暗,員,1 +1291,2年生の漢字で[とも]と読むのは?,友,理,医,院,1 +1292,2年生の漢字で[よう]と読むのは?,用,話,委,飲,1 +1293,2年生の漢字で[よう]と読むのは?,曜,悪,意,運,1 +1294,2年生の漢字で[らい]と読むのは?,来,安,育,泳,1 +1295,2年生の漢字で[さと]と読むのは?,里,暗,員,駅,1 +1296,2年生の漢字で[ことわり]と読むのは?,理,医,院,央,1 +1297,2年生の漢字で[はなし]と読むのは?,話,委,飲,横,1 +1298,3年生の漢字で[あく]と読むのは?,悪,意,運,屋,1 +1299,3年生の漢字で[あん]と読むのは?,安,育,泳,温,1 +1300,3年生の漢字で[あん]と読むのは?,暗,員,駅,化,1 +1301,3年生の漢字で[い]と読むのは?,医,院,央,荷,1 +1302,3年生の漢字で[い]と読むのは?,委,飲,横,界,1 +1303,3年生の漢字で[い]と読むのは?,意,運,屋,開,1 +1304,3年生の漢字で[いく]と読むのは?,育,泳,温,階,1 +1305,3年生の漢字で[いん]と読むのは?,員,駅,化,寒,1 +1306,3年生の漢字で[いん]と読むのは?,院,央,荷,感,1 +1307,3年生の漢字で[いん]と読むのは?,飲,横,界,漢,1 +1308,3年生の漢字で[うん]と読むのは?,運,屋,開,館,1 +1309,3年生の漢字で[えい]と読むのは?,泳,温,階,岸,1 +1310,3年生の漢字で[えき]と読むのは?,駅,化,寒,起,1 +1311,3年生の漢字で[おう]と読むのは?,央,荷,感,期,1 +1312,3年生の漢字で[よこ]と読むのは?,横,界,漢,客,1 +1313,3年生の漢字で[おく]と読むのは?,屋,開,館,究,1 +1314,3年生の漢字で[おん]と読むのは?,温,階,岸,急,1 +1315,3年生の漢字で[か]と読むのは?,化,寒,起,級,1 +1316,3年生の漢字で[に]と読むのは?,荷,感,期,宮,1 +1317,3年生の漢字で[かい]と読むのは?,界,漢,客,球,1 +1318,3年生の漢字で[かい]と読むのは?,開,館,究,去,1 +1319,3年生の漢字で[かい]と読むのは?,階,岸,急,橋,1 +1320,3年生の漢字で[かん]と読むのは?,寒,起,級,業,1 +1321,3年生の漢字で[かん]と読むのは?,感,期,宮,曲,1 +1322,3年生の漢字で[かん]と読むのは?,漢,客,球,局,1 +1323,3年生の漢字で[やかた]と読むのは?,館,究,去,銀,1 +1324,3年生の漢字で[きし]と読むのは?,岸,急,橋,区,1 +1325,3年生の漢字で[き]と読むのは?,起,級,業,苦,1 +1326,3年生の漢字で[き]と読むのは?,期,宮,曲,具,1 +1327,3年生の漢字で[きゃく]と読むのは?,客,球,局,君,1 +1328,3年生の漢字で[きゅう]と読むのは?,究,去,銀,係,1 +1329,3年生の漢字で[きゅう]と読むのは?,急,橋,区,軽,1 +1330,3年生の漢字で[きゅう]と読むのは?,級,業,苦,血,1 +1331,3年生の漢字で[みや]と読むのは?,宮,曲,具,決,1 +1332,3年生の漢字で[たま]と読むのは?,球,局,君,研,1 +1333,3年生の漢字で[きょ]と読むのは?,去,銀,係,県,1 +1334,3年生の漢字で[はし]と読むのは?,橋,区,軽,庫,1 +1335,3年生の漢字で[わざ]と読むのは?,業,苦,血,湖,1 +1336,3年生の漢字で[きょく]と読むのは?,曲,具,決,向,1 +1337,3年生の漢字で[きょく]と読むのは?,局,君,研,幸,1 +1338,3年生の漢字で[ぎん]と読むのは?,銀,係,県,港,1 +1339,3年生の漢字で[く]と読むのは?,区,軽,庫,号,1 +1340,3年生の漢字で[く]と読むのは?,苦,血,湖,根,1 +1341,3年生の漢字で[ぐ]と読むのは?,具,決,向,祭,1 +1342,3年生の漢字で[きみ]と読むのは?,君,研,幸,皿,1 +1343,3年生の漢字で[かかり]と読むのは?,係,県,港,仕,1 +1344,3年生の漢字で[けい]と読むのは?,軽,庫,号,死,1 +1345,3年生の漢字で[ち]と読むのは?,血,湖,根,使,1 +1346,3年生の漢字で[けつ]と読むのは?,決,向,祭,始,1 +1347,3年生の漢字で[けん]と読むのは?,研,幸,皿,指,1 +1348,3年生の漢字で[けん]と読むのは?,県,港,仕,歯,1 +1349,3年生の漢字で[こ]と読むのは?,庫,号,死,詩,1 +1350,3年生の漢字で[みずうみ]と読むのは?,湖,根,使,次,1 +1351,3年生の漢字で[むこう]と読むのは?,向,祭,始,事,1 +1352,3年生の漢字で[さち]と読むのは?,幸,皿,指,持,1 +1353,3年生の漢字で[みなと]と読むのは?,港,仕,歯,式,1 +1354,3年生の漢字で[ごう]と読むのは?,号,死,詩,実,1 +1355,3年生の漢字で[ね]と読むのは?,根,使,次,写,1 +1356,3年生の漢字で[まつり]と読むのは?,祭,始,事,者,1 +1357,3年生の漢字で[さら]と読むのは?,皿,指,持,主,1 +1358,3年生の漢字で[し]と読むのは?,仕,歯,式,守,1 +1359,3年生の漢字で[し]と読むのは?,死,詩,実,取,1 +1360,3年生の漢字で[し]と読むのは?,使,次,写,酒,1 +1361,3年生の漢字で[し]と読むのは?,始,事,者,受,1 +1362,3年生の漢字で[ゆび]と読むのは?,指,持,主,州,1 +1363,3年生の漢字で[は]と読むのは?,歯,式,守,拾,1 +1364,3年生の漢字で[し]と読むのは?,詩,実,取,終,1 +1365,3年生の漢字で[つぎ]と読むのは?,次,写,酒,習,1 +1366,3年生の漢字で[こと]と読むのは?,事,者,受,集,1 +1367,3年生の漢字で[じ]と読むのは?,持,主,州,住,1 +1368,3年生の漢字で[しき]と読むのは?,式,守,拾,重,1 +1369,3年生の漢字で[じつ]と読むのは?,実,取,終,宿,1 +1370,3年生の漢字で[しゃ]と読むのは?,写,酒,習,所,1 +1371,3年生の漢字で[しゃ]と読むのは?,者,受,集,暑,1 +1372,3年生の漢字で[しゅ]と読むのは?,主,州,住,助,1 +1373,3年生の漢字で[しゅ]と読むのは?,守,拾,重,昭,1 +1374,3年生の漢字で[しゅ]と読むのは?,取,終,宿,消,1 +1375,3年生の漢字で[しゅ]と読むのは?,酒,習,所,商,1 +1376,3年生の漢字で[じゅ]と読むのは?,受,集,暑,章,1 +1377,3年生の漢字で[しゅう]と読むのは?,州,住,助,勝,1 +1378,3年生の漢字で[しゅう]と読むのは?,拾,重,昭,乗,1 +1379,3年生の漢字で[しゅう]と読むのは?,終,宿,消,植,1 +1380,3年生の漢字で[しゅう]と読むのは?,習,所,商,申,1 +1381,3年生の漢字で[しゅう]と読むのは?,集,暑,章,身,1 +1382,3年生の漢字で[じゅう]と読むのは?,住,助,勝,神,1 +1383,3年生の漢字で[じゅう]と読むのは?,重,昭,乗,真,1 +1384,3年生の漢字で[やど]と読むのは?,宿,消,植,深,1 +1385,3年生の漢字で[ところ]と読むのは?,所,商,申,進,1 +1386,3年生の漢字で[しょ]と読むのは?,暑,章,身,世,1 +1387,3年生の漢字で[じょ]と読むのは?,助,勝,神,整,1 +1388,3年生の漢字で[しょう]と読むのは?,昭,乗,真,昔,1 +1389,3年生の漢字で[しょう]と読むのは?,消,植,深,全,1 +1390,3年生の漢字で[あきない]と読むのは?,商,申,進,相,1 +1391,3年生の漢字で[しょう]と読むのは?,章,身,世,送,1 +1392,3年生の漢字で[しょう]と読むのは?,勝,神,整,想,1 +1393,3年生の漢字で[じょう]と読むのは?,乗,真,昔,息,1 +1394,3年生の漢字で[しょく]と読むのは?,植,深,全,速,1 +1395,3年生の漢字で[しん]と読むのは?,申,進,相,族,1 +1396,3年生の漢字で[しん]と読むのは?,身,世,送,他,1 +1397,3年生の漢字で[かみ]と読むのは?,神,整,想,打,1 +1398,3年生の漢字で[しん]と読むのは?,真,昔,息,対,1 +1399,3年生の漢字で[しん]と読むのは?,深,全,速,待,1 +1400,3年生の漢字で[しん]と読むのは?,進,相,族,代,1 +1401,3年生の漢字で[よ]と読むのは?,世,送,他,第,1 +1402,3年生の漢字で[せい]と読むのは?,整,想,打,題,1 +1403,3年生の漢字で[むかし]と読むのは?,昔,息,対,炭,1 +1404,3年生の漢字で[ぜん]と読むのは?,全,速,待,短,1 +1405,3年生の漢字で[そう]と読むのは?,相,族,代,談,1 +1406,3年生の漢字で[そう]と読むのは?,送,他,第,着,1 +1407,3年生の漢字で[そう]と読むのは?,想,打,題,注,1 +1408,3年生の漢字で[いき]と読むのは?,息,対,炭,柱,1 +1409,3年生の漢字で[そく]と読むのは?,速,待,短,丁,1 +1410,3年生の漢字で[ぞく]と読むのは?,族,代,談,帳,1 +1411,3年生の漢字で[た]と読むのは?,他,第,着,調,1 +1412,3年生の漢字で[だ]と読むのは?,打,題,注,追,1 +1413,3年生の漢字で[たい]と読むのは?,対,炭,柱,定,1 +1414,3年生の漢字で[たい]と読むのは?,待,短,丁,庭,1 +1415,3年生の漢字で[だい]と読むのは?,代,談,帳,笛,1 +1416,3年生の漢字で[だい]と読むのは?,第,着,調,鉄,1 +1417,3年生の漢字で[だい]と読むのは?,題,注,追,転,1 +1418,3年生の漢字で[たん]と読むのは?,炭,柱,定,都,1 +1419,3年生の漢字で[たん]と読むのは?,短,丁,庭,度,1 +1420,3年生の漢字で[だん]と読むのは?,談,帳,笛,投,1 +1421,3年生の漢字で[ちゃく]と読むのは?,着,調,鉄,豆,1 +1422,3年生の漢字で[ちゅう]と読むのは?,注,追,転,島,1 +1423,3年生の漢字で[はしら]と読むのは?,柱,定,都,湯,1 +1424,3年生の漢字で[ちょう]と読むのは?,丁,庭,度,登,1 +1425,3年生の漢字で[ちょう]と読むのは?,帳,笛,投,等,1 +1426,3年生の漢字で[ちょう]と読むのは?,調,鉄,豆,動,1 +1427,3年生の漢字で[つい]と読むのは?,追,転,島,童,1 +1428,3年生の漢字で[じょう]と読むのは?,定,都,湯,農,1 +1429,3年生の漢字で[にわ]と読むのは?,庭,度,登,波,1 +1430,3年生の漢字で[ふえ]と読むのは?,笛,投,等,配,1 +1431,3年生の漢字で[てつ]と読むのは?,鉄,豆,動,倍,1 +1432,3年生の漢字で[てん]と読むのは?,転,島,童,箱,1 +1433,3年生の漢字で[みやこ]と読むのは?,都,湯,農,畑,1 +1434,3年生の漢字で[たび]と読むのは?,度,登,波,発,1 +1435,3年生の漢字で[とう]と読むのは?,投,等,配,反,1 +1436,3年生の漢字で[まめ]と読むのは?,豆,動,倍,坂,1 +1437,3年生の漢字で[しま]と読むのは?,島,童,箱,板,1 +1438,3年生の漢字で[ゆ]と読むのは?,湯,農,畑,皮,1 +1439,3年生の漢字で[とう]と読むのは?,登,波,発,悲,1 +1440,3年生の漢字で[とう]と読むのは?,等,配,反,美,1 +1441,3年生の漢字で[どう]と読むのは?,動,倍,坂,鼻,1 +1442,3年生の漢字で[どう]と読むのは?,童,箱,板,筆,1 +1443,3年生の漢字で[のう]と読むのは?,農,畑,皮,氷,1 +1444,3年生の漢字で[なみ]と読むのは?,波,発,悲,表,1 +1445,3年生の漢字で[はい]と読むのは?,配,反,美,秒,1 +1446,3年生の漢字で[ばい]と読むのは?,倍,坂,鼻,病,1 +1447,3年生の漢字で[はこ]と読むのは?,箱,板,筆,品,1 +1448,3年生の漢字で[はたけ]と読むのは?,畑,皮,氷,負,1 +1449,3年生の漢字で[はつ]と読むのは?,発,悲,表,部,1 +1450,3年生の漢字で[はん]と読むのは?,反,美,秒,服,1 +1451,3年生の漢字で[さか]と読むのは?,坂,鼻,病,福,1 +1452,3年生の漢字で[いた]と読むのは?,板,筆,品,物,1 +1453,3年生の漢字で[かわ]と読むのは?,皮,氷,負,平,1 +1454,3年生の漢字で[ひ]と読むのは?,悲,表,部,返,1 +1455,3年生の漢字で[び]と読むのは?,美,秒,服,勉,1 +1456,3年生の漢字で[はな]と読むのは?,鼻,病,福,放,1 +1457,3年生の漢字で[ふで]と読むのは?,筆,品,物,味,1 +1458,3年生の漢字で[こおり]と読むのは?,氷,負,平,命,1 +1459,3年生の漢字で[おもて]と読むのは?,表,部,返,面,1 +1460,3年生の漢字で[びょう]と読むのは?,秒,服,勉,問,1 +1461,3年生の漢字で[やまい]と読むのは?,病,福,放,役,1 +1462,3年生の漢字で[しな]と読むのは?,品,物,味,薬,1 +1463,3年生の漢字で[ふ]と読むのは?,負,平,命,由,1 +1464,3年生の漢字で[ぶ]と読むのは?,部,返,面,油,1 +1465,3年生の漢字で[ふく]と読むのは?,服,勉,問,有,1 +1466,3年生の漢字で[ふく]と読むのは?,福,放,役,遊,1 +1467,3年生の漢字で[ぶつ]と読むのは?,物,味,薬,予,1 +1468,3年生の漢字で[ひら]と読むのは?,平,命,由,羊,1 +1469,3年生の漢字で[へん]と読むのは?,返,面,油,洋,1 +1470,3年生の漢字で[べん]と読むのは?,勉,問,有,葉,1 +1471,3年生の漢字で[ほう]と読むのは?,放,役,遊,陽,1 +1472,3年生の漢字で[あじ]と読むのは?,味,薬,予,様,1 +1473,3年生の漢字で[いのち]と読むのは?,命,由,羊,落,1 +1474,3年生の漢字で[めん]と読むのは?,面,油,洋,流,1 +1475,3年生の漢字で[もん]と読むのは?,問,有,葉,旅,1 +1476,3年生の漢字で[やく]と読むのは?,役,遊,陽,両,1 +1477,3年生の漢字で[くすり]と読むのは?,薬,予,様,緑,1 +1478,3年生の漢字で[ゆ]と読むのは?,由,羊,落,礼,1 +1479,3年生の漢字で[あぶら]と読むのは?,油,洋,流,列,1 +1480,3年生の漢字で[ゆう]と読むのは?,有,葉,旅,練,1 +1481,3年生の漢字で[ゆう]と読むのは?,遊,陽,両,路,1 +1482,3年生の漢字で[よ]と読むのは?,予,様,緑,和,1 +1483,3年生の漢字で[ひつじ]と読むのは?,羊,落,礼,愛,1 +1484,3年生の漢字で[よう]と読むのは?,洋,流,列,案,1 +1485,3年生の漢字で[は]と読むのは?,葉,旅,練,以,1 +1486,3年生の漢字で[よう]と読むのは?,陽,両,路,衣,1 +1487,3年生の漢字で[さま]と読むのは?,様,緑,和,位,1 +1488,3年生の漢字で[らく]と読むのは?,落,礼,愛,囲,1 +1489,3年生の漢字で[りゅう]と読むのは?,流,列,案,胃,1 +1490,3年生の漢字で[たび]と読むのは?,旅,練,以,印,1 +1491,3年生の漢字で[りょう]と読むのは?,両,路,衣,英,1 +1492,3年生の漢字で[みどり]と読むのは?,緑,和,位,栄,1 +1493,3年生の漢字で[れい]と読むのは?,礼,愛,囲,塩,1 +1494,3年生の漢字で[れつ]と読むのは?,列,案,胃,億,1 +1495,3年生の漢字で[れん]と読むのは?,練,以,印,加,1 +1496,3年生の漢字で[ろ]と読むのは?,路,衣,英,果,1 +1497,3年生の漢字で[わ]と読むのは?,和,位,栄,貨,1 +1498,4年生の漢字で[あい]と読むのは?,愛,囲,塩,課,1 +1499,4年生の漢字で[あん]と読むのは?,案,胃,億,芽,1 +1500,4年生の漢字で[い]と読むのは?,以,印,加,改,1 +1501,4年生の漢字で[ころも]と読むのは?,衣,英,果,械,1 +1502,4年生の漢字で[くらい]と読むのは?,位,栄,貨,害,1 +1503,4年生の漢字で[い]と読むのは?,囲,塩,課,街,1 +1504,4年生の漢字で[い]と読むのは?,胃,億,芽,各,1 +1505,4年生の漢字で[しるし]と読むのは?,印,加,改,覚,1 +1506,4年生の漢字で[えい]と読むのは?,英,果,械,完,1 +1507,4年生の漢字で[えい]と読むのは?,栄,貨,害,官,1 +1508,4年生の漢字で[しお]と読むのは?,塩,課,街,管,1 +1509,4年生の漢字で[おく]と読むのは?,億,芽,各,関,1 +1510,4年生の漢字で[か]と読むのは?,加,改,覚,観,1 +1511,4年生の漢字で[か]と読むのは?,果,械,完,願,1 +1512,4年生の漢字で[か]と読むのは?,貨,害,官,希,1 +1513,4年生の漢字で[か]と読むのは?,課,街,管,季,1 +1514,4年生の漢字で[め]と読むのは?,芽,各,関,紀,1 +1515,4年生の漢字で[かい]と読むのは?,改,覚,観,喜,1 +1516,4年生の漢字で[かい]と読むのは?,械,完,願,旗,1 +1517,4年生の漢字で[がい]と読むのは?,害,官,希,器,1 +1518,4年生の漢字で[まち]と読むのは?,街,管,季,機,1 +1519,4年生の漢字で[かく]と読むのは?,各,関,紀,議,1 +1520,4年生の漢字で[かく]と読むのは?,覚,観,喜,求,1 +1521,4年生の漢字で[かん]と読むのは?,完,願,旗,泣,1 +1522,4年生の漢字で[かん]と読むのは?,官,希,器,救,1 +1523,4年生の漢字で[かん]と読むのは?,管,季,機,給,1 +1524,4年生の漢字で[かん]と読むのは?,関,紀,議,挙,1 +1525,4年生の漢字で[かん]と読むのは?,観,喜,求,漁,1 +1526,4年生の漢字で[がん]と読むのは?,願,旗,泣,共,1 +1527,4年生の漢字で[き]と読むのは?,希,器,救,協,1 +1528,4年生の漢字で[き]と読むのは?,季,機,給,鏡,1 +1529,4年生の漢字で[き]と読むのは?,紀,議,挙,竸,1 +1530,4年生の漢字で[き]と読むのは?,喜,求,漁,極,1 +1531,4年生の漢字で[はた]と読むのは?,旗,泣,共,訓,1 +1532,4年生の漢字で[うつわ]と読むのは?,器,救,協,軍,1 +1533,4年生の漢字で[き]と読むのは?,機,給,鏡,郡,1 +1534,4年生の漢字で[ぎ]と読むのは?,議,挙,竸,径,1 +1535,4年生の漢字で[きゅう]と読むのは?,求,漁,極,型,1 +1536,4年生の漢字で[きゅう]と読むのは?,泣,共,訓,景,1 +1537,4年生の漢字で[きゅう]と読むのは?,救,協,軍,芸,1 +1538,4年生の漢字で[きゅう]と読むのは?,給,鏡,郡,欠,1 +1539,4年生の漢字で[きょ]と読むのは?,挙,竸,径,結,1 +1540,4年生の漢字で[りょう]と読むのは?,漁,極,型,建,1 +1541,4年生の漢字で[きょう]と読むのは?,共,訓,景,健,1 +1542,4年生の漢字で[きょう]と読むのは?,協,軍,芸,験,1 +1543,4年生の漢字で[きょう]と読むのは?,鏡,郡,欠,固,1 +1544,4年生の漢字で[きょう]と読むのは?,竸,径,結,功,1 +1545,4年生の漢字で[きょく]と読むのは?,極,型,建,好,1 +1546,4年生の漢字で[くん]と読むのは?,訓,景,健,候,1 +1547,4年生の漢字で[ぐん]と読むのは?,軍,芸,験,航,1 +1548,4年生の漢字で[ぐん]と読むのは?,郡,欠,固,康,1 +1549,4年生の漢字で[けい]と読むのは?,径,結,功,告,1 +1550,4年生の漢字で[けい]と読むのは?,型,建,好,差,1 +1551,4年生の漢字で[けい]と読むのは?,景,健,候,菜,1 +1552,4年生の漢字で[げい]と読むのは?,芸,験,航,最,1 +1553,4年生の漢字で[けつ]と読むのは?,欠,固,康,材,1 +1554,4年生の漢字で[けつ]と読むのは?,結,功,告,昨,1 +1555,4年生の漢字で[けん]と読むのは?,建,好,差,札,1 +1556,4年生の漢字で[けん]と読むのは?,健,候,菜,刷,1 +1557,4年生の漢字で[けん]と読むのは?,験,航,最,殺,1 +1558,4年生の漢字で[こ]と読むのは?,固,康,材,察,1 +1559,4年生の漢字で[こう]と読むのは?,功,告,昨,参,1 +1560,4年生の漢字で[こう]と読むのは?,好,差,札,産,1 +1561,4年生の漢字で[そうろう]と読むのは?,候,菜,刷,散,1 +1562,4年生の漢字で[こう]と読むのは?,航,最,殺,残,1 +1563,4年生の漢字で[こう]と読むのは?,康,材,察,士,1 +1564,4年生の漢字で[こく]と読むのは?,告,昨,参,氏,1 +1565,4年生の漢字で[さ]と読むのは?,差,札,産,史,1 +1566,4年生の漢字で[さい]と読むのは?,菜,刷,散,司,1 +1567,4年生の漢字で[さい]と読むのは?,最,殺,残,試,1 +1568,4年生の漢字で[ざい]と読むのは?,材,察,士,児,1 +1569,4年生の漢字で[さく]と読むのは?,昨,参,氏,治,1 +1570,4年生の漢字で[さつ]と読むのは?,札,産,史,辞,1 +1571,4年生の漢字で[さつ]と読むのは?,刷,散,司,失,1 +1572,4年生の漢字で[さつ]と読むのは?,殺,残,試,借,1 +1573,4年生の漢字で[さつ]と読むのは?,察,士,児,種,1 +1574,4年生の漢字で[さん]と読むのは?,参,氏,治,周,1 +1575,4年生の漢字で[さん]と読むのは?,産,史,辞,祝,1 +1576,4年生の漢字で[さん]と読むのは?,散,司,失,順,1 +1577,4年生の漢字で[ざん]と読むのは?,残,試,借,初,1 +1578,4年生の漢字で[し]と読むのは?,士,児,種,松,1 +1579,4年生の漢字で[し]と読むのは?,氏,治,周,笑,1 +1580,4年生の漢字で[し]と読むのは?,史,辞,祝,唱,1 +1581,4年生の漢字で[し]と読むのは?,司,失,順,焼,1 +1582,4年生の漢字で[し]と読むのは?,試,借,初,象,1 +1583,4年生の漢字で[じ]と読むのは?,児,種,松,照,1 +1584,4年生の漢字で[じ]と読むのは?,治,周,笑,賞,1 +1585,4年生の漢字で[じ]と読むのは?,辞,祝,唱,臣,1 +1586,4年生の漢字で[しつ]と読むのは?,失,順,焼,信,1 +1587,4年生の漢字で[しゃく]と読むのは?,借,初,象,成,1 +1588,4年生の漢字で[しゅ]と読むのは?,種,松,照,省,1 +1589,4年生の漢字で[しゅう]と読むのは?,周,笑,賞,清,1 +1590,4年生の漢字で[しゅく]と読むのは?,祝,唱,臣,静,1 +1591,4年生の漢字で[じゅん]と読むのは?,順,焼,信,席,1 +1592,4年生の漢字で[しょ]と読むのは?,初,象,成,積,1 +1593,4年生の漢字で[まつ]と読むのは?,松,照,省,折,1 +1594,4年生の漢字で[しょう]と読むのは?,笑,賞,清,節,1 +1595,4年生の漢字で[しょう]と読むのは?,唱,臣,静,説,1 +1596,4年生の漢字で[しょう]と読むのは?,焼,信,席,浅,1 +1597,4年生の漢字で[しょう]と読むのは?,象,成,積,戦,1 +1598,4年生の漢字で[しょう]と読むのは?,照,省,折,選,1 +1599,4年生の漢字で[しょう]と読むのは?,賞,清,節,然,1 +1600,4年生の漢字で[しん]と読むのは?,臣,静,説,争,1 +1601,4年生の漢字で[しん]と読むのは?,信,席,浅,倉,1 +1602,4年生の漢字で[せい]と読むのは?,成,積,戦,巣,1 +1603,4年生の漢字で[しょう]と読むのは?,省,折,選,束,1 +1604,4年生の漢字で[せい]と読むのは?,清,節,然,側,1 +1605,4年生の漢字で[せい]と読むのは?,静,説,争,続,1 +1606,4年生の漢字で[せき]と読むのは?,席,浅,倉,卒,1 +1607,4年生の漢字で[せき]と読むのは?,積,戦,巣,孫,1 +1608,4年生の漢字で[せつ]と読むのは?,折,選,束,帯,1 +1609,4年生の漢字で[せつ]と読むのは?,節,然,側,隊,1 +1610,4年生の漢字で[せつ]と読むのは?,説,争,続,達,1 +1611,4年生の漢字で[せん]と読むのは?,浅,倉,卒,単,1 +1612,4年生の漢字で[せん]と読むのは?,戦,巣,孫,置,1 +1613,4年生の漢字で[せん]と読むのは?,選,束,帯,仲,1 +1614,4年生の漢字で[ねん]と読むのは?,然,側,隊,貯,1 +1615,4年生の漢字で[そう]と読むのは?,争,続,達,兆,1 +1616,4年生の漢字で[そう]と読むのは?,倉,卒,単,腸,1 +1617,4年生の漢字で[す]と読むのは?,巣,孫,置,低,1 +1618,4年生の漢字で[つか]と読むのは?,束,帯,仲,底,1 +1619,4年生の漢字で[がわ]と読むのは?,側,隊,貯,停,1 +1620,4年生の漢字で[ぞく]と読むのは?,続,達,兆,的,1 +1621,4年生の漢字で[そつ]と読むのは?,卒,単,腸,典,1 +1622,4年生の漢字で[まご]と読むのは?,孫,置,低,伝,1 +1623,4年生の漢字で[おび]と読むのは?,帯,仲,底,徒,1 +1624,4年生の漢字で[たい]と読むのは?,隊,貯,停,努,1 +1625,4年生の漢字で[たち]と読むのは?,達,兆,的,灯,1 +1626,4年生の漢字で[たん]と読むのは?,単,腸,典,堂,1 +1627,4年生の漢字で[ち]と読むのは?,置,低,伝,働,1 +1628,4年生の漢字で[ちゅう]と読むのは?,仲,底,徒,特,1 +1629,4年生の漢字で[ちょ]と読むのは?,貯,停,努,得,1 +1630,4年生の漢字で[ちょう]と読むのは?,兆,的,灯,毒,1 +1631,4年生の漢字で[ちょう]と読むのは?,腸,典,堂,熱,1 +1632,4年生の漢字で[てい]と読むのは?,低,伝,働,念,1 +1633,4年生の漢字で[てい]と読むのは?,底,徒,特,敗,1 +1634,4年生の漢字で[てい]と読むのは?,停,努,得,梅,1 +1635,4年生の漢字で[まと]と読むのは?,的,灯,毒,博,1 +1636,4年生の漢字で[てん]と読むのは?,典,堂,熱,飯,1 +1637,4年生の漢字で[でん]と読むのは?,伝,働,念,飛,1 +1638,4年生の漢字で[と]と読むのは?,徒,特,敗,費,1 +1639,4年生の漢字で[ど]と読むのは?,努,得,梅,必,1 +1640,4年生の漢字で[とう]と読むのは?,灯,毒,博,票,1 +1641,4年生の漢字で[どう]と読むのは?,堂,熱,飯,標,1 +1642,4年生の漢字で[どう]と読むのは?,働,念,飛,不,1 +1643,4年生の漢字で[とく]と読むのは?,特,敗,費,夫,1 +1644,4年生の漢字で[とく]と読むのは?,得,梅,必,付,1 +1645,4年生の漢字で[どく]と読むのは?,毒,博,票,府,1 +1646,4年生の漢字で[ねつ]と読むのは?,熱,飯,標,副,1 +1647,4年生の漢字で[ねん]と読むのは?,念,飛,不,粉,1 +1648,4年生の漢字で[はい]と読むのは?,敗,費,夫,兵,1 +1649,4年生の漢字で[ばい]と読むのは?,梅,必,付,別,1 +1650,4年生の漢字で[はく]と読むのは?,博,票,府,辺,1 +1651,4年生の漢字で[めし]と読むのは?,飯,標,副,変,1 +1652,4年生の漢字で[ひ]と読むのは?,飛,不,粉,便,1 +1653,4年生の漢字で[ひ]と読むのは?,費,夫,兵,包,1 +1654,4年生の漢字で[ひつ]と読むのは?,必,付,別,法,1 +1655,4年生の漢字で[ひょう]と読むのは?,票,府,辺,望,1 +1656,4年生の漢字で[ひょう]と読むのは?,標,副,変,牧,1 +1657,4年生の漢字で[ふ]と読むのは?,不,粉,便,末,1 +1658,4年生の漢字で[ふ]と読むのは?,夫,兵,包,満,1 +1659,4年生の漢字で[ふ]と読むのは?,付,別,法,未,1 +1660,4年生の漢字で[ふ]と読むのは?,府,辺,望,脈,1 +1661,4年生の漢字で[ふく]と読むのは?,副,変,牧,民,1 +1662,4年生の漢字で[ふん]と読むのは?,粉,便,末,無,1 +1663,4年生の漢字で[へい]と読むのは?,兵,包,満,約,1 +1664,4年生の漢字で[べつ]と読むのは?,別,法,未,勇,1 +1665,4年生の漢字で[へん]と読むのは?,辺,望,脈,要,1 +1666,4年生の漢字で[へん]と読むのは?,変,牧,民,養,1 +1667,4年生の漢字で[べん]と読むのは?,便,末,無,浴,1 +1668,4年生の漢字で[ほう]と読むのは?,包,満,約,利,1 +1669,4年生の漢字で[ほう]と読むのは?,法,未,勇,陸,1 +1670,4年生の漢字で[ぼう]と読むのは?,望,脈,要,良,1 +1671,4年生の漢字で[ぼく]と読むのは?,牧,民,養,料,1 +1672,4年生の漢字で[すえ]と読むのは?,末,無,浴,量,1 +1673,4年生の漢字で[みつ]と読むのは?,満,約,利,輪,1 +1674,4年生の漢字で[み]と読むのは?,未,勇,陸,類,1 +1675,4年生の漢字で[みゃく]と読むのは?,脈,要,良,令,1 +1676,4年生の漢字で[みん]と読むのは?,民,養,料,冷,1 +1677,4年生の漢字で[む]と読むのは?,無,浴,量,例,1 +1678,4年生の漢字で[やく]と読むのは?,約,利,輪,歴,1 +1679,4年生の漢字で[ゆう]と読むのは?,勇,陸,類,連,1 +1680,4年生の漢字で[よう]と読むのは?,要,良,令,老,1 +1681,4年生の漢字で[よう]と読むのは?,養,料,冷,労,1 +1682,4年生の漢字で[よく]と読むのは?,浴,量,例,録,1 +1683,4年生の漢字で[り]と読むのは?,利,輪,歴,圧,1 +1684,4年生の漢字で[りく]と読むのは?,陸,類,連,移,1 +1685,4年生の漢字で[りょう]と読むのは?,良,令,老,因,1 +1686,4年生の漢字で[りょう]と読むのは?,料,冷,労,永,1 +1687,4年生の漢字で[りょう]と読むのは?,量,例,録,営,1 +1688,4年生の漢字で[りん]と読むのは?,輪,歴,圧,衞,1 +1689,4年生の漢字で[るい]と読むのは?,類,連,移,易,1 +1690,4年生の漢字で[れい]と読むのは?,令,老,因,益,1 +1691,4年生の漢字で[れい]と読むのは?,冷,労,永,液,1 +1692,4年生の漢字で[れい]と読むのは?,例,録,営,演,1 +1693,4年生の漢字で[れき]と読むのは?,歴,圧,衞,応,1 +1694,4年生の漢字で[れん]と読むのは?,連,移,易,往,1 +1695,4年生の漢字で[ろう]と読むのは?,老,因,益,桜,1 +1696,4年生の漢字で[ろう]と読むのは?,労,永,液,恩,1 +1697,4年生の漢字で[ろく]と読むのは?,録,営,演,可,1 +1698,5年生の漢字で[あつ]と読むのは?,圧,衞,応,仮,1 +1699,5年生の漢字で[い]と読むのは?,移,易,往,価,1 +1700,5年生の漢字で[いん]と読むのは?,因,益,桜,河,1 +1701,5年生の漢字で[えい]と読むのは?,永,液,恩,過,1 +1702,5年生の漢字で[えい]と読むのは?,営,演,可,賀,1 +1703,5年生の漢字で[えい]と読むのは?,衞,応,仮,快,1 +1704,5年生の漢字で[えき]と読むのは?,易,往,価,解,1 +1705,5年生の漢字で[えき]と読むのは?,益,桜,河,格,1 +1706,5年生の漢字で[えき]と読むのは?,液,恩,過,確,1 +1707,5年生の漢字で[えん]と読むのは?,演,可,賀,額,1 +1708,5年生の漢字で[おう]と読むのは?,応,仮,快,刊,1 +1709,5年生の漢字で[おう]と読むのは?,往,価,解,幹,1 +1710,5年生の漢字で[さくら]と読むのは?,桜,河,格,慣,1 +1711,5年生の漢字で[おん]と読むのは?,恩,過,確,眼,1 +1712,5年生の漢字で[か]と読むのは?,可,賀,額,基,1 +1713,5年生の漢字で[かり]と読むのは?,仮,快,刊,寄,1 +1714,5年生の漢字で[か]と読むのは?,価,解,幹,規,1 +1715,5年生の漢字で[かわ]と読むのは?,河,格,慣,技,1 +1716,5年生の漢字で[か]と読むのは?,過,確,眼,義,1 +1717,5年生の漢字で[が]と読むのは?,賀,額,基,逆,1 +1718,5年生の漢字で[かい]と読むのは?,快,刊,寄,久,1 +1719,5年生の漢字で[かい]と読むのは?,解,幹,規,旧,1 +1720,5年生の漢字で[かく]と読むのは?,格,慣,技,居,1 +1721,5年生の漢字で[かく]と読むのは?,確,眼,義,許,1 +1722,5年生の漢字で[がく]と読むのは?,額,基,逆,境,1 +1723,5年生の漢字で[かん]と読むのは?,刊,寄,久,均,1 +1724,5年生の漢字で[かん]と読むのは?,幹,規,旧,禁,1 +1725,5年生の漢字で[かん]と読むのは?,慣,技,居,句,1 +1726,5年生の漢字で[がん]と読むのは?,眼,義,許,群,1 +1727,5年生の漢字で[もと]と読むのは?,基,逆,境,経,1 +1728,5年生の漢字で[き]と読むのは?,寄,久,均,潔,1 +1729,5年生の漢字で[き]と読むのは?,規,旧,禁,件,1 +1730,5年生の漢字で[ぎ]と読むのは?,技,居,句,券,1 +1731,5年生の漢字で[ぎ]と読むのは?,義,許,群,険,1 +1732,5年生の漢字で[ぎゃく]と読むのは?,逆,境,経,検,1 +1733,5年生の漢字で[きゅう]と読むのは?,久,均,潔,限,1 +1734,5年生の漢字で[きゅう]と読むのは?,旧,禁,件,現,1 +1735,5年生の漢字で[きょ]と読むのは?,居,句,券,減,1 +1736,5年生の漢字で[きょ]と読むのは?,許,群,険,故,1 +1737,5年生の漢字で[きょう]と読むのは?,境,経,検,個,1 +1738,5年生の漢字で[きん]と読むのは?,均,潔,限,護,1 +1739,5年生の漢字で[きん]と読むのは?,禁,件,現,効,1 +1740,5年生の漢字で[く]と読むのは?,句,券,減,厚,1 +1741,5年生の漢字で[ぐん]と読むのは?,群,険,故,耕,1 +1742,5年生の漢字で[けい]と読むのは?,経,検,個,鉱,1 +1743,5年生の漢字で[けつ]と読むのは?,潔,限,護,構,1 +1744,5年生の漢字で[けん]と読むのは?,件,現,効,興,1 +1745,5年生の漢字で[けん]と読むのは?,券,減,厚,講,1 +1746,5年生の漢字で[けん]と読むのは?,険,故,耕,混,1 +1747,5年生の漢字で[けん]と読むのは?,検,個,鉱,査,1 +1748,5年生の漢字で[げん]と読むのは?,限,護,構,再,1 +1749,5年生の漢字で[げん]と読むのは?,現,効,興,災,1 +1750,5年生の漢字で[げん]と読むのは?,減,厚,講,妻,1 +1751,5年生の漢字で[ゆえ]と読むのは?,故,耕,混,採,1 +1752,5年生の漢字で[こ]と読むのは?,個,鉱,査,在,1 +1753,5年生の漢字で[ご]と読むのは?,護,構,再,財,1 +1754,5年生の漢字で[こう]と読むのは?,効,興,災,罪,1 +1755,5年生の漢字で[こう]と読むのは?,厚,講,妻,雑,1 +1756,5年生の漢字で[こう]と読むのは?,耕,混,採,酸,1 +1757,5年生の漢字で[こう]と読むのは?,鉱,査,在,賛,1 +1758,5年生の漢字で[こう]と読むのは?,構,再,財,志,1 +1759,5年生の漢字で[こう]と読むのは?,興,災,罪,枝,1 +1760,5年生の漢字で[こう]と読むのは?,講,妻,雑,師,1 +1761,5年生の漢字で[こん]と読むのは?,混,採,酸,資,1 +1762,5年生の漢字で[さ]と読むのは?,査,在,賛,飼,1 +1763,5年生の漢字で[さい]と読むのは?,再,財,志,示,1 +1764,5年生の漢字で[さい]と読むのは?,災,罪,枝,似,1 +1765,5年生の漢字で[さい]と読むのは?,妻,雑,師,識,1 +1766,5年生の漢字で[さい]と読むのは?,採,酸,資,質,1 +1767,5年生の漢字で[ざい]と読むのは?,在,賛,飼,舎,1 +1768,5年生の漢字で[ざい]と読むのは?,財,志,示,謝,1 +1769,5年生の漢字で[ざい]と読むのは?,罪,枝,似,授,1 +1770,5年生の漢字で[ざつ]と読むのは?,雑,師,識,修,1 +1771,5年生の漢字で[さん]と読むのは?,酸,資,質,述,1 +1772,5年生の漢字で[さん]と読むのは?,賛,飼,舎,術,1 +1773,5年生の漢字で[し]と読むのは?,志,示,謝,準,1 +1774,5年生の漢字で[えだ]と読むのは?,枝,似,授,序,1 +1775,5年生の漢字で[し]と読むのは?,師,識,修,招,1 +1776,5年生の漢字で[し]と読むのは?,資,質,述,承,1 +1777,5年生の漢字で[し]と読むのは?,飼,舎,術,証,1 +1778,5年生の漢字で[じ]と読むのは?,示,謝,準,条,1 +1779,5年生の漢字で[じ]と読むのは?,似,授,序,状,1 +1780,5年生の漢字で[しき]と読むのは?,識,修,招,常,1 +1781,5年生の漢字で[しつ]と読むのは?,質,述,承,情,1 +1782,5年生の漢字で[しゃ]と読むのは?,舎,術,証,織,1 +1783,5年生の漢字で[しゃ]と読むのは?,謝,準,条,職,1 +1784,5年生の漢字で[じゅ]と読むのは?,授,序,状,制,1 +1785,5年生の漢字で[しゅう]と読むのは?,修,招,常,性,1 +1786,5年生の漢字で[じゅつ]と読むのは?,述,承,情,政,1 +1787,5年生の漢字で[じゅつ]と読むのは?,術,証,織,勢,1 +1788,5年生の漢字で[じゅん]と読むのは?,準,条,職,精,1 +1789,5年生の漢字で[じょ]と読むのは?,序,状,制,製,1 +1790,5年生の漢字で[しょう]と読むのは?,招,常,性,税,1 +1791,5年生の漢字で[しょう]と読むのは?,承,情,政,責,1 +1792,5年生の漢字で[しょう]と読むのは?,証,織,勢,績,1 +1793,5年生の漢字で[じょう]と読むのは?,条,職,精,接,1 +1794,5年生の漢字で[じょう]と読むのは?,状,制,製,設,1 +1795,5年生の漢字で[じょう]と読むのは?,常,性,税,舌,1 +1796,5年生の漢字で[じょう]と読むのは?,情,政,責,絶,1 +1797,5年生の漢字で[しき]と読むのは?,織,勢,績,銭,1 +1798,5年生の漢字で[しょく]と読むのは?,職,精,接,祖,1 +1799,5年生の漢字で[せい]と読むのは?,制,製,設,素,1 +1800,5年生の漢字で[せい]と読むのは?,性,税,舌,総,1 +1801,5年生の漢字で[せい]と読むのは?,政,責,絶,造,1 +1802,5年生の漢字で[せい]と読むのは?,勢,績,銭,像,1 +1803,5年生の漢字で[せい]と読むのは?,精,接,祖,増,1 +1804,5年生の漢字で[せい]と読むのは?,製,設,素,則,1 +1805,5年生の漢字で[ぜい]と読むのは?,税,舌,総,測,1 +1806,5年生の漢字で[せき]と読むのは?,責,絶,造,属,1 +1807,5年生の漢字で[せき]と読むのは?,績,銭,像,率,1 +1808,5年生の漢字で[せつ]と読むのは?,接,祖,増,損,1 +1809,5年生の漢字で[せつ]と読むのは?,設,素,則,退,1 +1810,5年生の漢字で[ぜつ]と読むのは?,舌,総,測,貸,1 +1811,5年生の漢字で[ぜつ]と読むのは?,絶,造,属,態,1 +1812,5年生の漢字で[せん]と読むのは?,銭,像,率,団,1 +1813,5年生の漢字で[そ]と読むのは?,祖,増,損,断,1 +1814,5年生の漢字で[そ]と読むのは?,素,則,退,築,1 +1815,5年生の漢字で[そう]と読むのは?,総,測,貸,張,1 +1816,5年生の漢字で[ぞう]と読むのは?,造,属,態,堤,1 +1817,5年生の漢字で[ぞう]と読むのは?,像,率,団,程,1 +1818,5年生の漢字で[ぞう]と読むのは?,増,損,断,適,1 +1819,5年生の漢字で[そく]と読むのは?,則,退,築,敵,1 +1820,5年生の漢字で[そく]と読むのは?,測,貸,張,統,1 +1821,5年生の漢字で[ぞく]と読むのは?,属,態,堤,銅,1 +1822,5年生の漢字で[りつ]と読むのは?,率,団,程,導,1 +1823,5年生の漢字で[そん]と読むのは?,損,断,適,徳,1 +1824,5年生の漢字で[たい]と読むのは?,退,築,敵,独,1 +1825,5年生の漢字で[たい]と読むのは?,貸,張,統,任,1 +1826,5年生の漢字で[たい]と読むのは?,態,堤,銅,燃,1 +1827,5年生の漢字で[だん]と読むのは?,団,程,導,能,1 +1828,5年生の漢字で[だん]と読むのは?,断,適,徳,破,1 +1829,5年生の漢字で[ちく]と読むのは?,築,敵,独,犯,1 +1830,5年生の漢字で[ちょう]と読むのは?,張,統,任,判,1 +1831,5年生の漢字で[てい]と読むのは?,堤,銅,燃,版,1 +1832,5年生の漢字で[てい]と読むのは?,程,導,能,比,1 +1833,5年生の漢字で[てき]と読むのは?,適,徳,破,肥,1 +1834,5年生の漢字で[てき]と読むのは?,敵,独,犯,非,1 +1835,5年生の漢字で[とう]と読むのは?,統,任,判,備,1 +1836,5年生の漢字で[どう]と読むのは?,銅,燃,版,俵,1 +1837,5年生の漢字で[どう]と読むのは?,導,能,比,評,1 +1838,5年生の漢字で[とく]と読むのは?,徳,破,肥,貧,1 +1839,5年生の漢字で[どく]と読むのは?,独,犯,非,布,1 +1840,5年生の漢字で[にん]と読むのは?,任,判,備,婦,1 +1841,5年生の漢字で[ねん]と読むのは?,燃,版,俵,富,1 +1842,5年生の漢字で[のう]と読むのは?,能,比,評,武,1 +1843,5年生の漢字で[は]と読むのは?,破,肥,貧,復,1 +1844,5年生の漢字で[はん]と読むのは?,犯,非,布,複,1 +1845,5年生の漢字で[はん]と読むのは?,判,備,婦,仏,1 +1846,5年生の漢字で[はん]と読むのは?,版,俵,富,編,1 +1847,5年生の漢字で[ひ]と読むのは?,比,評,武,弁,1 +1848,5年生の漢字で[ひ]と読むのは?,肥,貧,復,保,1 +1849,5年生の漢字で[ひ]と読むのは?,非,布,複,墓,1 +1850,5年生の漢字で[び]と読むのは?,備,婦,仏,報,1 +1851,5年生の漢字で[びょう]と読むのは?,俵,富,編,豊,1 +1852,5年生の漢字で[ひょう]と読むのは?,評,武,弁,防,1 +1853,5年生の漢字で[ひん]と読むのは?,貧,復,保,貿,1 +1854,5年生の漢字で[ふ]と読むのは?,布,複,墓,暴,1 +1855,5年生の漢字で[ふ]と読むのは?,婦,仏,報,務,1 +1856,5年生の漢字で[とみ]と読むのは?,富,編,豊,夢,1 +1857,5年生の漢字で[ぶ]と読むのは?,武,弁,防,迷,1 +1858,5年生の漢字で[ふく]と読むのは?,復,保,貿,綿,1 +1859,5年生の漢字で[ふく]と読むのは?,複,墓,暴,輸,1 +1860,5年生の漢字で[ぶつ]と読むのは?,仏,報,務,余,1 +1861,5年生の漢字で[へん]と読むのは?,編,豊,夢,預,1 +1862,5年生の漢字で[べん]と読むのは?,弁,防,迷,容,1 +1863,5年生の漢字で[ほ]と読むのは?,保,貿,綿,略,1 +1864,5年生の漢字で[はか]と読むのは?,墓,暴,輸,留,1 +1865,5年生の漢字で[ほう]と読むのは?,報,務,余,領,1 +1866,5年生の漢字で[ほう]と読むのは?,豊,夢,預,異,1 +1867,5年生の漢字で[ぼう]と読むのは?,防,迷,容,遺,1 +1868,5年生の漢字で[ぼう]と読むのは?,貿,綿,略,域,1 +1869,5年生の漢字で[ぼう]と読むのは?,暴,輸,留,宇,1 +1870,5年生の漢字で[む]と読むのは?,務,余,領,映,1 +1871,5年生の漢字で[む]と読むのは?,夢,預,異,延,1 +1872,5年生の漢字で[めい]と読むのは?,迷,容,遺,沿,1 +1873,5年生の漢字で[めん]と読むのは?,綿,略,域,我,1 +1874,5年生の漢字で[ゆ]と読むのは?,輸,留,宇,灰,1 +1875,5年生の漢字で[よ]と読むのは?,余,領,映,拡,1 +1876,5年生の漢字で[よ]と読むのは?,預,異,延,革,1 +1877,5年生の漢字で[よう]と読むのは?,容,遺,沿,閣,1 +1878,5年生の漢字で[りゃく]と読むのは?,略,域,我,割,1 +1879,5年生の漢字で[りゅう]と読むのは?,留,宇,灰,株,1 +1880,5年生の漢字で[りょう]と読むのは?,領,映,拡,干,1 +1881,6年生の漢字で[い]と読むのは?,異,延,革,巻,1 +1882,6年生の漢字で[い]と読むのは?,遺,沿,閣,看,1 +1883,6年生の漢字で[いき]と読むのは?,域,我,割,簡,1 +1884,6年生の漢字で[う]と読むのは?,宇,灰,株,危,1 +1885,6年生の漢字で[えい]と読むのは?,映,拡,干,机,1 +1886,6年生の漢字で[えん]と読むのは?,延,革,巻,揮,1 +1887,6年生の漢字で[えん]と読むのは?,沿,閣,看,貴,1 +1888,6年生の漢字で[が]と読むのは?,我,割,簡,疑,1 +1889,6年生の漢字で[はい]と読むのは?,灰,株,危,吸,1 +1890,6年生の漢字で[かく]と読むのは?,拡,干,机,供,1 +1891,6年生の漢字で[かく]と読むのは?,革,巻,揮,胸,1 +1892,6年生の漢字で[かく]と読むのは?,閣,看,貴,郷,1 +1893,6年生の漢字で[かつ]と読むのは?,割,簡,疑,勤,1 +1894,6年生の漢字で[かぶ]と読むのは?,株,危,吸,筋,1 +1895,6年生の漢字で[かん]と読むのは?,干,机,供,系,1 +1896,6年生の漢字で[かん]と読むのは?,巻,揮,胸,敬,1 +1897,6年生の漢字で[かん]と読むのは?,看,貴,郷,警,1 +1898,6年生の漢字で[かん]と読むのは?,簡,疑,勤,劇,1 +1899,6年生の漢字で[き]と読むのは?,危,吸,筋,激,1 +1900,6年生の漢字で[き]と読むのは?,机,供,系,穴,1 +1901,6年生の漢字で[き]と読むのは?,揮,胸,敬,絹,1 +1902,6年生の漢字で[き]と読むのは?,貴,郷,警,権,1 +1903,6年生の漢字で[ぎ]と読むのは?,疑,勤,劇,憲,1 +1904,6年生の漢字で[きゅう]と読むのは?,吸,筋,激,源,1 +1905,6年生の漢字で[きょう]と読むのは?,供,系,穴,厳,1 +1906,6年生の漢字で[きょう]と読むのは?,胸,敬,絹,己,1 +1907,6年生の漢字で[きょう]と読むのは?,郷,警,権,呼,1 +1908,6年生の漢字で[きん]と読むのは?,勤,劇,憲,誤,1 +1909,6年生の漢字で[きん]と読むのは?,筋,激,源,后,1 +1910,6年生の漢字で[けい]と読むのは?,系,穴,厳,考,1 +1911,6年生の漢字で[けい]と読むのは?,敬,絹,己,皇,1 +1912,6年生の漢字で[けい]と読むのは?,警,権,呼,紅,1 +1913,6年生の漢字で[げき]と読むのは?,劇,憲,誤,降,1 +1914,6年生の漢字で[げき]と読むのは?,激,源,后,鋼,1 +1915,6年生の漢字で[あな]と読むのは?,穴,厳,考,刻,1 +1916,6年生の漢字で[きぬ]と読むのは?,絹,己,皇,穀,1 +1917,6年生の漢字で[けん]と読むのは?,権,呼,紅,骨,1 +1918,6年生の漢字で[けん]と読むのは?,憲,誤,降,困,1 +1919,6年生の漢字で[げん]と読むのは?,源,后,鋼,砂,1 +1920,6年生の漢字で[げん]と読むのは?,厳,考,刻,座,1 +1921,6年生の漢字で[こ]と読むのは?,己,皇,穀,済,1 +1922,6年生の漢字で[こ]と読むのは?,呼,紅,骨,裁,1 +1923,6年生の漢字で[ご]と読むのは?,誤,降,困,策,1 +1924,6年生の漢字で[ごう]と読むのは?,后,鋼,砂,冊,1 +1925,6年生の漢字で[こう]と読むのは?,考,刻,座,蚕,1 +1926,6年生の漢字で[こう]と読むのは?,皇,穀,済,至,1 +1927,6年生の漢字で[こう]と読むのは?,紅,骨,裁,私,1 +1928,6年生の漢字で[こう]と読むのは?,降,困,策,姿,1 +1929,6年生の漢字で[こう]と読むのは?,鋼,砂,冊,視,1 +1930,6年生の漢字で[こく]と読むのは?,刻,座,蚕,詞,1 +1931,6年生の漢字で[こく]と読むのは?,穀,済,至,誌,1 +1932,6年生の漢字で[こつ]と読むのは?,骨,裁,私,磁,1 +1933,6年生の漢字で[こん]と読むのは?,困,策,姿,射,1 +1934,6年生の漢字で[さ]と読むのは?,砂,冊,視,捨,1 +1935,6年生の漢字で[ざ]と読むのは?,座,蚕,詞,尺,1 +1936,6年生の漢字で[さい]と読むのは?,済,至,誌,若,1 +1937,6年生の漢字で[さい]と読むのは?,裁,私,磁,樹,1 +1938,6年生の漢字で[さく]と読むのは?,策,姿,射,収,1 +1939,6年生の漢字で[さつ]と読むのは?,冊,視,捨,宗,1 +1940,6年生の漢字で[かいこ]と読むのは?,蚕,詞,尺,就,1 +1941,6年生の漢字で[し]と読むのは?,至,誌,若,衆,1 +1942,6年生の漢字で[し]と読むのは?,私,磁,樹,従,1 +1943,6年生の漢字で[し]と読むのは?,姿,射,収,縦,1 +1944,6年生の漢字で[し]と読むのは?,視,捨,宗,縮,1 +1945,6年生の漢字で[し]と読むのは?,詞,尺,就,熟,1 +1946,6年生の漢字で[し]と読むのは?,誌,若,衆,純,1 +1947,6年生の漢字で[じ]と読むのは?,磁,樹,従,処,1 +1948,6年生の漢字で[しゃ]と読むのは?,射,収,縦,署,1 +1949,6年生の漢字で[しゃ]と読むのは?,捨,宗,縮,諸,1 +1950,6年生の漢字で[しゃく]と読むのは?,尺,就,熟,除,1 +1951,6年生の漢字で[じゃく]と読むのは?,若,衆,純,将,1 +1952,6年生の漢字で[じゅ]と読むのは?,樹,従,処,傷,1 +1953,6年生の漢字で[しゅう]と読むのは?,収,縦,署,障,1 +1954,6年生の漢字で[しゅう]と読むのは?,宗,縮,諸,城,1 +1955,6年生の漢字で[しゅう]と読むのは?,就,熟,除,蒸,1 +1956,6年生の漢字で[しゅう]と読むのは?,衆,純,将,針,1 +1957,6年生の漢字で[じゅう]と読むのは?,従,処,傷,仁,1 +1958,6年生の漢字で[じゅう]と読むのは?,縦,署,障,垂,1 +1959,6年生の漢字で[しゅく]と読むのは?,縮,諸,城,推,1 +1960,6年生の漢字で[じゅく]と読むのは?,熟,除,蒸,寸,1 +1961,6年生の漢字で[じゅん]と読むのは?,純,将,針,盛,1 +1962,6年生の漢字で[ところ]と読むのは?,処,傷,仁,聖,1 +1963,6年生の漢字で[しょ]と読むのは?,署,障,垂,誠,1 +1964,6年生の漢字で[しょ]と読むのは?,諸,城,推,宣,1 +1965,6年生の漢字で[じょ]と読むのは?,除,蒸,寸,専,1 +1966,6年生の漢字で[しょう]と読むのは?,将,針,盛,泉,1 +1967,6年生の漢字で[しょう]と読むのは?,傷,仁,聖,洗,1 +1968,6年生の漢字で[しょう]と読むのは?,障,垂,誠,染,1 +1969,6年生の漢字で[じょう]と読むのは?,城,推,宣,善,1 +1970,6年生の漢字で[じょう]と読むのは?,蒸,寸,専,奏,1 +1971,6年生の漢字で[しん]と読むのは?,針,盛,泉,窓,1 +1972,6年生の漢字で[じん]と読むのは?,仁,聖,洗,創,1 +1973,6年生の漢字で[すい]と読むのは?,垂,誠,染,装,1 +1974,6年生の漢字で[すい]と読むのは?,推,宣,善,層,1 +1975,6年生の漢字で[すん]と読むのは?,寸,専,奏,操,1 +1976,6年生の漢字で[せい]と読むのは?,盛,泉,窓,蔵,1 +1977,6年生の漢字で[せい]と読むのは?,聖,洗,創,臓,1 +1978,6年生の漢字で[せい]と読むのは?,誠,染,装,存,1 +1979,6年生の漢字で[せん]と読むのは?,宣,善,層,尊,1 +1980,6年生の漢字で[せん]と読むのは?,専,奏,操,宅,1 +1981,6年生の漢字で[せん]と読むのは?,泉,窓,蔵,担,1 +1982,6年生の漢字で[せん]と読むのは?,洗,創,臓,探,1 +1983,6年生の漢字で[せん]と読むのは?,染,装,存,誕,1 +1984,6年生の漢字で[ぜん]と読むのは?,善,層,尊,段,1 +1985,6年生の漢字で[そう]と読むのは?,奏,操,宅,暖,1 +1986,6年生の漢字で[まど]と読むのは?,窓,蔵,担,値,1 +1987,6年生の漢字で[そう]と読むのは?,創,臓,探,宙,1 +1988,6年生の漢字で[そう]と読むのは?,装,存,誕,忠,1 +1989,6年生の漢字で[そう]と読むのは?,層,尊,段,著,1 +1990,6年生の漢字で[そう]と読むのは?,操,宅,暖,庁,1 +1991,6年生の漢字で[ぞう]と読むのは?,蔵,担,値,頂,1 +1992,6年生の漢字で[ぞう]と読むのは?,臓,探,宙,潮,1 +1993,6年生の漢字で[ぞん]と読むのは?,存,誕,忠,賃,1 +1994,6年生の漢字で[そん]と読むのは?,尊,段,著,痛,1 +1995,6年生の漢字で[たく]と読むのは?,宅,暖,庁,展,1 +1996,6年生の漢字で[たん]と読むのは?,担,値,頂,討,1 +1997,6年生の漢字で[たん]と読むのは?,探,宙,潮,党,1 +1998,6年生の漢字で[たん]と読むのは?,誕,忠,賃,糖,1 +1999,6年生の漢字で[だん]と読むのは?,段,著,痛,届,1 +2000,6年生の漢字で[だん]と読むのは?,暖,庁,展,難,1 +2001,6年生の漢字で[ち]と読むのは?,値,頂,討,乳,1 +2002,6年生の漢字で[ちゅう]と読むのは?,宙,潮,党,認,1 +2003,6年生の漢字で[ちゅう]と読むのは?,忠,賃,糖,納,1 +2004,6年生の漢字で[ちょ]と読むのは?,著,痛,届,脳,1 +2005,6年生の漢字で[ちょう]と読むのは?,庁,展,難,派,1 +2006,6年生の漢字で[ちょう]と読むのは?,頂,討,乳,拝,1 +2007,6年生の漢字で[しお]と読むのは?,潮,党,認,背,1 +2008,6年生の漢字で[ちん]と読むのは?,賃,糖,納,肺,1 +2009,6年生の漢字で[つう]と読むのは?,痛,届,脳,俳,1 +2010,6年生の漢字で[てん]と読むのは?,展,難,派,班,1 +2011,6年生の漢字で[とう]と読むのは?,討,乳,拝,晩,1 +2012,6年生の漢字で[とう]と読むのは?,党,認,背,否,1 +2013,6年生の漢字で[とう]と読むのは?,糖,納,肺,批,1 +2014,6年生の漢字で[かい]と読むのは?,届,脳,俳,秘,1 +2015,6年生の漢字で[なん]と読むのは?,難,派,班,腹,1 +2016,6年生の漢字で[にゅう]と読むのは?,乳,拝,晩,奮,1 +2017,6年生の漢字で[にん]と読むのは?,認,背,否,並,1 +2018,6年生の漢字で[のう]と読むのは?,納,肺,批,陛,1 +2019,6年生の漢字で[のう]と読むのは?,脳,俳,秘,閉,1 +2020,6年生の漢字で[は]と読むのは?,派,班,腹,片,1 +2021,6年生の漢字で[はい]と読むのは?,拝,晩,奮,補,1 +2022,6年生の漢字で[はい]と読むのは?,背,否,並,暮,1 +2023,6年生の漢字で[はい]と読むのは?,肺,批,陛,宝,1 +2024,6年生の漢字で[はい]と読むのは?,俳,秘,閉,訪,1 +2025,6年生の漢字で[はん]と読むのは?,班,腹,片,亡,1 +2026,6年生の漢字で[ばん]と読むのは?,晩,奮,補,忘,1 +2027,6年生の漢字で[いな]と読むのは?,否,並,暮,棒,1 +2028,6年生の漢字で[ひ]と読むのは?,批,陛,宝,枚,1 +2029,6年生の漢字で[ひ]と読むのは?,秘,閉,訪,幕,1 +2030,6年生の漢字で[ふく]と読むのは?,腹,片,亡,密,1 +2031,6年生の漢字で[ふん]と読むのは?,奮,拝,乳,討,1 +2032,6年生の漢字で[なみ]と読むのは?,並,背,認,党,1 +2033,6年生の漢字で[へい]と読むのは?,陛,肺,納,糖,1 +2034,6年生の漢字で[へい]と読むのは?,閉,俳,脳,届,1 +2035,6年生の漢字で[へん]と読むのは?,片,班,派,難,1 +2036,6年生の漢字で[ほ]と読むのは?,補,晩,拝,乳,1 +2037,6年生の漢字で[ぼ]と読むのは?,暮,否,背,認,1 +2038,6年生の漢字で[ほう]と読むのは?,宝,批,肺,納,1 +2039,6年生の漢字で[ほう]と読むのは?,訪,秘,俳,脳,1 +2040,6年生の漢字で[ぼう]と読むのは?,亡,腹,班,派,1 +2041,6年生の漢字で[ぼう]と読むのは?,忘,奮,晩,拝,1 +2042,6年生の漢字で[ぼう]と読むのは?,棒,並,否,背,1 +2043,6年生の漢字で[まい]と読むのは?,枚,陛,批,肺,1 +2044,6年生の漢字で[まく]と読むのは?,幕,閉,秘,俳,1 +2045,6年生の漢字で[みつ]と読むのは?,密,片,腹,班,1 +2046,6年生の漢字で[めい]と読むのは?,盟,補,奮,晩,1 +2047,6年生の漢字で[も]と読むのは?,模,暮,並,否,1 +2048,6年生の漢字で[やく]と読むのは?,訳,宝,陛,批,1 +2049,6年生の漢字で[ゆう]と読むのは?,郵,訪,閉,秘,1 +2050,6年生の漢字で[ゆう]と読むのは?,優,亡,片,腹,1 +2051,6年生の漢字で[よう]と読むのは?,幼,忘,補,奮,1 +2052,6年生の漢字で[よく]と読むのは?,欲,棒,暮,並,1 +2053,6年生の漢字で[よく]と読むのは?,翌,枚,宝,陛,1 +2054,6年生の漢字で[らん]と読むのは?,乱,幕,訪,閉,1 +2055,6年生の漢字で[らん]と読むのは?,卵,密,亡,片,1 +2056,6年生の漢字で[らん]と読むのは?,覧,盟,忘,補,1 +2057,6年生の漢字で[うら]と読むのは?,裏,模,棒,暮,1 +2058,6年生の漢字で[りつ]と読むのは?,律,訳,枚,宝,1 +2059,6年生の漢字で[りん]と読むのは?,臨,郵,幕,訪,1 +2060,6年生の漢字で[ろう]と読むのは?,朗,優,密,亡,1 +2061,6年生の漢字で[ろん]と読むのは?,論,幼,盟,忘,1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/db.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,16 @@ +#!/usr/bin/ruby +# coding: utf-8 + +require"rubygems" +require"pg" + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + res.each do |row| + puts row["question"].to_s + ":" + row["word1"].to_s + ":" + row["word2"].to_s + ":" + row["word3"].to_s + ":" + row["word4"].to_s + end +ensure + conn.close if conn +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/db.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,17 @@ +#!/usr/bin/ruby +# coding: utf-8 + +require"rubygems" +require"pg" + +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + q = "select question, word1, word2, word3, word4 from quiz" + res = conn.exec(q) + p res + res.each do |row| + puts row["question"].to_s + ":" + row["wordone"].to_s + ":" + row["wordtwo"].to_s + ":" + row["wordthi"].to_s + ":" + row["wordfou"].to_s + end +ensure + conn.close if conn +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/hantei.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,4 @@ +#!/usr/bin/ruby +# coding: utf-8 +def hantei(a, b, c, d) + if
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/index.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,20 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> +<title>Mackey Academy</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> +<body> +<p>Ver.0.8</p> +<div class="center01"> +<img src="ma.png" width="480" height="140"> +<img src="boss.jpg" width="480" height="320" alt="" title""> +<h2>ȳ桪</h2> +<a href="login.html"> +<button class="css3button"></button> +</a> +<p>ϤƤ<a href="add.html"></a></p> +<p><a href="read.html"></a></p> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/index.html~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,18 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>教育ソフトウェア</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> +<body> +<h1>test mode</h1> +<div class="center01"> +<h1>テストモード</h1> +<img src="boss.jpg" width="480" height="320" alt="スタート" title"スタート"> +<h2>テストクエスト開催中!</h2> +<a href="login.html"> +<button class="css3button">ログイン</button> +</a> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/intro.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,18 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> +<title>Mackey Academy</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> +<body> +<div class="center01"> +<img src="ma.png" width="480" height="140"> +</div> +<h1>´ʸֳؽٱ祷ƥMackey Academyγȯ</h1> +<p>ǯɤ⤿ΥͥåȤ䥲ʤɤѻ֤ӤƤǡͥ +Ȥ䥲λ֤ṳ̂ۤʿ⤤ˤ뤳Ȥ狼äǡͥåȤ䥲λ֤ΤޤٶˤƤ뤳ȤǤʤ顢뤳ȤǤΤǤϤʤȤΩƤäơǤʤRPGڤळȤMackey Academyפȯ롣ܸʸǤApachePosgreSQLRubyʤɤδĶΤȡCGIǤΥץꥱȯԤä</p> +<p>ʸ<a href="puti.pdf"></a></p> +<br><br><br> +<p>Mackey AcademyǥǤ<a href="index.html"></a></p> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/login.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,21 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> +<title></title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1></h1> +<div class="center01"> +<div> +<form method="POST" action="login.rb"> +<p> +<span>ID:</span><input type="text" name="id"><br><br> +<span>PASS:</span><input type="password" name="pass"><br><br> +<button class="css3button" type="submit" name="Battle" value="0"></button> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/login.html~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,21 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>ログイン</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>ログイン</h1> +<div class="center01"> +<div> +<form method="POST" action="login.rb"> +<p> +<span>ID:</span><input type="text" name="id"><br><br> +<span>PASS:</span><input type="password" name="pass"><br><br> +<button class="css3button" type="submit" name="Battle" value="0">ログイン</button> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/login.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,90 @@ +#!/usr/bin/env ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "euc-jp") +print"Content-type: text/html; charset=euc-jp\n\n" + +number = c["id"] +pswd = c["pass"] +log = c["Battle"] +check = 0 +lvl = 0 +ep = 0 +qu = 0 +namae = "" +myhp = 0 +begin + conn = PGconn.connect('broy.e.koeki-u.ac.jp','','','','c112085','mackeyacademy','l3nl3q1u') + a = "select id, password, name, level, exp, quest from userdata" + ip = conn.exec(a) + ip.each do |row| + if number == row["id"] && pswd == row["password"] + lvl = row["level"] + ep = row["exp"] + qu = row["quest"] + namae = row["name"] + myhp = lvl.to_i * 100 + check = 1 + end + if number == row["id"] && log == "1" + lvl = row["level"] + ep = row["exp"] + qu = row["quest"] + namae = row["name"] + myhp = lvl.to_i * 100 + check = 1 + end + end +end +print"<html> +<head> +<meta http-equiv=\"Content-Type\" content=\"text/html; charset=euc-jp\"> +<title>桼Ͽ</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body>\n" +if check == 0 + print"<h1>Error</h1><p>⤦پǧƤƤ!</p> +<a href=\"login.html\"> +<button class=\"css3button\"></button></a>\n" +elsif check == 1 + print"<h1>λ</h1> +<p><span>Name:</span>#{namae}<br> +<span>Level:</span>#{lvl}<br> +<span>exp:</span>#{ep}</p> +<div class=\"center01\"> +<h1>ȥơ1</h1> +<h2>Ϥޤο</h2> +<img src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"\" title=\"\"> +<form method=\"POST\" action=\"battle.rb\"> +<h1>Ϥޤο</h1> +<p>Ф줷ͦ#{namae}Τ<br> +ͦԤˤμͦϤɬפ<br> +ݤͦԤǤ뤳ȤƤ졪</p> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"100\"></button>\n" + if qu > "0" + print"<h1>¤ο</h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"300\"></button>\n" + end + if qu > "1" + print"<h1></h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"500\"></button>\n" + end + if qu > "2" + print"<h1>濴--</h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"1000\"></button>\n" + end + print"<input type=\"hidden\" name=\"hp\" value=\"#{myhp}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{myhp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{namae}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{number}\"> +<input type=\"hidden\" name=\"count\" value=\"1\">\n" + +end + +print"</form></body> +</html>\n"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/login.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,87 @@ +#!/usr/bin/ruby +# coding: euc-jp +require 'rubygems' +require 'pg' +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print"Content-type: text/html; charset=utf-8\n\n" + +number = c["id"] +pswd = c["pass"] +log = c["Battle"] +check = 0 +lvl = 0 +ep = 0 +qu = 0 +namae = "" +myhp = 0 +begin + conn = PGconn.connect('127.0.0.1','','','','semi','masahiro','l3nl3q1u') + a = "select id, password, name, level, exp, quest from userdata" + ip = conn.exec(a) + ip.each do |row| + if number == row["id"] && pswd == row["password"] + lvl = row["level"] + ep = row["exp"] + qu = row["quest"] + namae = row["name"] + myhp = lvl.to_i * 100 + check = 1 + end + if number == row["id"] && log == "1" + lvl = row["level"] + ep = row["exp"] + qu = row["quest"] + namae = row["name"] + myhp = lvl.to_i * 100 + check = 1 + end + end +end +print"<html> +<head> +<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"> +<title>桼Ͽ</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body>\n" +if check == 0 + print"<h1>Error</h1><p>⤦پǧƤƤ!</p> +<a href=\"login.html\"> +<button class=\"css3button\"></button></a>\n" +elsif check == 1 + print"<h1>λ</h1> +<p><span>Name:</span>#{namae}<br> +<span>Level:</span>#{lvl}<br> +<span>exp:</span>#{ep}</p> +<div class=\"center01\"> +<h1>ƥȥȥơ1</h1> +<h2>Ϥޤο</h2> +<img src=\"forest.jpg\" width=\"480\" height=\"320\" alt=\"\" title=\"\"> +<form method=\"POST\" action=\"battle.rb\"> +<h1>Ϥޤο</h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"100\"></button>\n" + if qu > "0" + print"<h1>¤ο</h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"300\"></button>\n" + end + if qu > "1" + print"<h1></h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"500\"></button>\n" + end + if qu > "2" + print"<h1>濴--</h1> +<button class=\"css3button\" type=\"submit\" name=\"thp\" value=\"1000\"></button>\n" + end + print"<input type=\"hidden\" name=\"hp\" value=\"#{myhp}\"> +<input type=\"hidden\" name=\"defohp\" value=\"#{myhp}\"> +<input type=\"hidden\" name=\"namae\" value=\"#{namae}\"> +<input type=\"hidden\" name=\"level\" value=\"#{lvl}\"> +<input type=\"hidden\" name=\"exp\" value=\"#{ep}\"> +<input type=\"hidden\" name=\"id\" value=\"#{number}\"> +<input type=\"hidden\" name=\"count\" value=\"1\">\n" + +end + +print"</form></body> +</html>\n"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/quest.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,24 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>テストクエスト</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>テストクエスト</h1> +<div class="center01"> +<div> +<img border="1" src="forest.jpg" width="480" height="320" +alt="背景" title="背景"> +<h2>探索しよう!</h2> +<form method="POST" action="battle.rb"> +<button class="css3button" type="submit" name="Battle" value="1">Start</button> +<input type="hidden" name="hp" value="999"> +<input type="hidden" name="thp" value="300"> +<input type="hidden" name="count" value="1"> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/quest.html~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,23 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>テストクエスト</title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> + +<body> +<h1>テストクエスト</h1> +<div class="center01"> +<div> +<img border="1" src="forest.jpg" width="480" height="320" +alt="背景" title="背景"> +<h2>探索しよう!</h2> +<form method="POST" action="battle.rb"> +<button class="css3button" type="submit" name="Battle" value="1">Start</button> +<input type="hidden" name="hp" value="999"> +<input type="hidden" name="thp" value="300"> +</form> +</div> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/read.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,20 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=euc-jp"> +<title></title> +<link rel="stylesheet" href="style.css" type="text/css"> +</head> +<body> +<div class="center01"> +<img src="ma.png" width="320" height="80"> +<h1>Ϥ</h1> +<p>ΥǤϷηäϤˤʤޤ<br> +Фۤɥ˹Ǥ衪<br> +⤹зμƤ<br> +⥭饯٥륢åפƤɤɤʤƤ<br> +<br> +Υץ쥤гعٶǤ㤦⡩</p> +<a href="index.html"><button class="css3button">BACK</button></a> +</div> +</body> +</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/readme.html Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,378 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <!-- + Modified from the Debian original for Ubuntu + Last updated: 2014-03-19 + See: https://launchpad.net/bugs/1288690 + --> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>Apache2 Ubuntu Default Page: It works</title> + <style type="text/css" media="screen"> + * { + margin: 0px 0px 0px 0px; + padding: 0px 0px 0px 0px; + } + + body, html { + padding: 3px 3px 3px 3px; + + background-color: #D8DBE2; + + font-family: Verdana, sans-serif; + font-size: 11pt; + text-align: center; + } + + div.main_page { + position: relative; + display: table; + + width: 800px; + + margin-bottom: 3px; + margin-left: auto; + margin-right: auto; + padding: 0px 0px 0px 0px; + + border-width: 2px; + border-color: #212738; + border-style: solid; + + background-color: #FFFFFF; + + text-align: center; + } + + div.page_header { + height: 99px; + width: 100%; + + background-color: #F5F6F7; + } + + div.page_header span { + margin: 15px 0px 0px 50px; + + font-size: 180%; + font-weight: bold; + } + + div.page_header img { + margin: 3px 0px 0px 40px; + + border: 0px 0px 0px; + } + + div.table_of_contents { + clear: left; + + min-width: 200px; + + margin: 3px 3px 3px 3px; + + background-color: #FFFFFF; + + text-align: left; + } + + div.table_of_contents_item { + clear: left; + + width: 100%; + + margin: 4px 0px 0px 0px; + + background-color: #FFFFFF; + + color: #000000; + text-align: left; + } + + div.table_of_contents_item a { + margin: 6px 0px 0px 6px; + } + + div.content_section { + margin: 3px 3px 3px 3px; + + background-color: #FFFFFF; + + text-align: left; + } + + div.content_section_text { + padding: 4px 8px 4px 8px; + + color: #000000; + font-size: 100%; + } + + div.content_section_text pre { + margin: 8px 0px 8px 0px; + padding: 8px 8px 8px 8px; + + border-width: 1px; + border-style: dotted; + border-color: #000000; + + background-color: #F5F6F7; + + font-style: italic; + } + + div.content_section_text p { + margin-bottom: 6px; + } + + div.content_section_text ul, div.content_section_text li { + padding: 4px 8px 4px 16px; + } + + div.section_header { + padding: 3px 6px 3px 6px; + + background-color: #8E9CB2; + + color: #FFFFFF; + font-weight: bold; + font-size: 112%; + text-align: center; + } + + div.section_header_red { + background-color: #CD214F; + } + + div.section_header_grey { + background-color: #9F9386; + } + + .floating_element { + position: relative; + float: left; + } + + div.table_of_contents_item a, + div.content_section_text a { + text-decoration: none; + font-weight: bold; + } + + div.table_of_contents_item a:link, + div.table_of_contents_item a:visited, + div.table_of_contents_item a:active { + color: #000000; + } + + div.table_of_contents_item a:hover { + background-color: #000000; + + color: #FFFFFF; + } + + div.content_section_text a:link, + div.content_section_text a:visited, + div.content_section_text a:active { + background-color: #DCDFE6; + + color: #000000; + } + + div.content_section_text a:hover { + background-color: #000000; + + color: #DCDFE6; + } + + div.validator { + } + </style> + </head> + <body> + <div class="main_page"> + <div class="page_header floating_element"> + <img src="/icons/ubuntu-logo.png" alt="Ubuntu Logo" class="floating_element"/> + <span class="floating_element"> + Apache2 Ubuntu Default Page + </span> + </div> +<!-- <div class="table_of_contents floating_element"> + <div class="section_header section_header_grey"> + TABLE OF CONTENTS + </div> + <div class="table_of_contents_item floating_element"> + <a href="#about">About</a> + </div> + <div class="table_of_contents_item floating_element"> + <a href="#changes">Changes</a> + </div> + <div class="table_of_contents_item floating_element"> + <a href="#scope">Scope</a> + </div> + <div class="table_of_contents_item floating_element"> + <a href="#files">Config files</a> + </div> + </div> +--> + <div class="content_section floating_element"> + + + <div class="section_header section_header_red"> + <div id="about"></div> + It works! + </div> + <div class="content_section_text"> + <p> + This is the default welcome page used to test the correct + operation of the Apache2 server after installation on Ubuntu systems. + It is based on the equivalent page on Debian, from which the Ubuntu Apache + packaging is derived. + If you can read this page, it means that the Apache HTTP server installed at + this site is working properly. You should <b>replace this file</b> (located at + <tt>/var/www/html/index.html</tt>) before continuing to operate your HTTP server. + </p> + + + <p> + If you are a normal user of this web site and don't know what this page is + about, this probably means that the site is currently unavailable due to + maintenance. + If the problem persists, please contact the site's administrator. + </p> + + </div> + <div class="section_header"> + <div id="changes"></div> + Configuration Overview + </div> + <div class="content_section_text"> + <p> + Ubuntu's Apache2 default configuration is different from the + upstream default configuration, and split into several files optimized for + interaction with Ubuntu tools. The configuration system is + <b>fully documented in + /usr/share/doc/apache2/README.Debian.gz</b>. Refer to this for the full + documentation. Documentation for the web server itself can be + found by accessing the <a href="/manual">manual</a> if the <tt>apache2-doc</tt> + package was installed on this server. + + </p> + <p> + The configuration layout for an Apache2 web server installation on Ubuntu systems is as follows: + </p> + <pre> +/etc/apache2/ +|-- apache2.conf +| `-- ports.conf +|-- mods-enabled +| |-- *.load +| `-- *.conf +|-- conf-enabled +| `-- *.conf +|-- sites-enabled +| `-- *.conf + </pre> + <ul> + <li> + <tt>apache2.conf</tt> is the main configuration + file. It puts the pieces together by including all remaining configuration + files when starting up the web server. + </li> + + <li> + <tt>ports.conf</tt> is always included from the + main configuration file. It is used to determine the listening ports for + incoming connections, and this file can be customized anytime. + </li> + + <li> + Configuration files in the <tt>mods-enabled/</tt>, + <tt>conf-enabled/</tt> and <tt>sites-enabled/</tt> directories contain + particular configuration snippets which manage modules, global configuration + fragments, or virtual host configurations, respectively. + </li> + + <li> + They are activated by symlinking available + configuration files from their respective + *-available/ counterparts. These should be managed + by using our helpers + <tt> + <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2enmod">a2enmod</a>, + <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2dismod">a2dismod</a>, + </tt> + <tt> + <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2ensite">a2ensite</a>, + <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2dissite">a2dissite</a>, + </tt> + and + <tt> + <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2enconf">a2enconf</a>, + <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2disconf">a2disconf</a> + </tt>. See their respective man pages for detailed information. + </li> + + <li> + The binary is called apache2. Due to the use of + environment variables, in the default configuration, apache2 needs to be + started/stopped with <tt>/etc/init.d/apache2</tt> or <tt>apache2ctl</tt>. + <b>Calling <tt>/usr/bin/apache2</tt> directly will not work</b> with the + default configuration. + </li> + </ul> + </div> + + <div class="section_header"> + <div id="docroot"></div> + Document Roots + </div> + + <div class="content_section_text"> + <p> + By default, Ubuntu does not allow access through the web browser to + <em>any</em> file apart of those located in <tt>/var/www</tt>, + <a href="http://httpd.apache.org/docs/2.4/mod/mod_userdir.html">public_html</a> + directories (when enabled) and <tt>/usr/share</tt> (for web + applications). If your site is using a web document root + located elsewhere (such as in <tt>/srv</tt>) you may need to whitelist your + document root directory in <tt>/etc/apache2/apache2.conf</tt>. + </p> + <p> + The default Ubuntu document root is <tt>/var/www/html</tt>. You + can make your own virtual hosts under /var/www. This is different + to previous releases which provides better security out of the box. + </p> + </div> + + <div class="section_header"> + <div id="bugs"></div> + Reporting Problems + </div> + <div class="content_section_text"> + <p> + Please use the <tt>ubuntu-bug</tt> tool to report bugs in the + Apache2 package with Ubuntu. However, check <a + href="https://bugs.launchpad.net/ubuntu/+source/apache2">existing + bug reports</a> before reporting a new bug. + </p> + <p> + Please report bugs specific to modules (such as PHP and others) + to respective packages, not to the web server itself. + </p> + </div> + + + + + </div> + </div> + <div class="validator"> + <p> + <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a> + </p> + </div> + </body> +</html> +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/style.css Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,51 @@ +.main { + width: 100%; + border: 1px solid #000; +} +.main div { + width: 80%; + border: 1px solid #FF0000; + margin: 0 auto; +} +button.css3button{ + font-family: Arial, Helvetica, sans-serif; + font-size: 14px; + color: #ffffff; + padding: 10px 20px; + background: -moz-linear-gradient( + top, + #a3a3a3 0%, + #3b3b3b 50%, + #242424 50%, + #000000); + background: -webkit-gradient( + linear, left top, left bottom, + from(#a3a3a3), + color-stop(0.50, #3b3b3b), + color-stop(0.50, #242424), + to(#000000)); + -moz-border-radius: 10px; + -webkit-border-radius: 10px; + border-radius: 10px; + border: 1px solid #000000; + -moz-box-shadow: + 0px 1px 3px rgba(000,000,000,0.5), + inset 0px 0px 1px rgba(255,255,255,0.6); + -webkit-box-shadow: + 0px 1px 3px rgba(000,000,000,0.5), + inset 0px 0px 1px rgba(255,255,255,0.6); + box-shadow: + 0px 1px 3px rgba(000,000,000,0.5), + inset 0px 0px 1px rgba(255,255,255,0.6); + text-shadow: + 0px -1px 0px rgba(000,000,000,1), + 0px 1px 0px rgba(255,255,255,0.2); +} +.center01 { + max-width:600px; + margin:0 auto; +} +span { +display: inline-block; +width: 7em; +} \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/style.css~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,47 @@ +.main { + width: 100%; + border: 1px solid #000; +} +.main div { + width: 80%; + border: 1px solid #FF0000; + margin: 0 auto; +} +button.css3button{ + font-family: Arial, Helvetica, sans-serif; + font-size: 14px; + color: #ffffff; + padding: 10px 20px; + background: -moz-linear-gradient( + top, + #a3a3a3 0%, + #3b3b3b 50%, + #242424 50%, + #000000); + background: -webkit-gradient( + linear, left top, left bottom, + from(#a3a3a3), + color-stop(0.50, #3b3b3b), + color-stop(0.50, #242424), + to(#000000)); + -moz-border-radius: 10px; + -webkit-border-radius: 10px; + border-radius: 10px; + border: 1px solid #000000; + -moz-box-shadow: + 0px 1px 3px rgba(000,000,000,0.5), + inset 0px 0px 1px rgba(255,255,255,0.6); + -webkit-box-shadow: + 0px 1px 3px rgba(000,000,000,0.5), + inset 0px 0px 1px rgba(255,255,255,0.6); + box-shadow: + 0px 1px 3px rgba(000,000,000,0.5), + inset 0px 0px 1px rgba(255,255,255,0.6); + text-shadow: + 0px -1px 0px rgba(000,000,000,1), + 0px 1px 0px rgba(255,255,255,0.2); +} +.center01 { + max-width:600px; + margin:0 auto; +} \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/test.rb Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,77 @@ +#!/usr/bin/ruby +# coding: utf-8 + +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print "Content-type: text/html; charset=utf-8\n\n" + +check = c["answer"] +quiznum = c["dat"] + +srand +number=rand(1060) +num = 0 +damage = "" +quiz = "" +ansone = "" +anstwo = "" +ansthi = "" +ansfou = "" +anstrue = "" +open("data.txt", "r:utf-8") do |list| + while line = list.gets + if /(\d+),(\S+),(\S+),(\S+),(\S+),(\S+),(\d)/ =~ line + if quiznum.to_i == $1.to_i + if check.to_i == $7.to_i + damage = "攻撃成功!" + else + damage = "攻撃失敗!" + end + end + if number.to_i == $1.to_i + num = $1.to_i + quiz = $2.to_s + ansone = $3.to_s + anstwo = $4.to_s + ansthi = $5.to_s + ansfou = $6.to_s + anstrue = $7.to_i + end + end + end +end + + + +printf("<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<h2>#{damage}</h2> +<p>No.#{number}</p> +<div class=\"main\"> +<div> +<img border=\"1\" src=\"maou.png\" width=\"480\" height=\"320\" +alt=\"まおうのがぞうっぽいよ\" title=\"まおう\"> + +<h2>問題</h2> +<p>%s</p> + +<form method=\"POST\" action=\"ans.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"1\">%s</bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"2\">%s</bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"3\">%s<br></bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"4\">%s<br></bu\ +tton> +<input type=\"hidden\" name=\"dat\" value=\"%d\"> +</form> +</div> +</div> +</body> +</html>", quiz, ansone, anstwo, ansthi, ansfou, num)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mackey/academy/test.rb~ Tue Feb 24 16:55:03 2015 +0900 @@ -0,0 +1,77 @@ +#!/usr/bin/ruby +# coding: utf-8 + +require 'cgi' +c = CGI.new(:accept_charset => "utf-8") +print "Content-type: text/html; charset=utf-8\n\n" + +check = c["answer"] +quiznum = c["dat"] + +srand +number=rand(1060) +num = 0 +damage = "" +quiz = "" +ansone = "" +anstwo = "" +ansthi = "" +ansfou = "" +anstrue = "" +open("data.txt", "r:utf-8") do |list| + while line = list.gets + if /(\d+),(\S+),(\S+),(\S+),(\S+),(\S+),(\d)/ =~ line + if quiznum.to_i == $1.to_i + if check.to_i == $7.to_i + damage = "攻撃成功!" + else + damage = "攻撃失敗!" + end + end + if number.to_i == $1.to_i + num = $1.to_i + quiz = $2.to_s + ansone = $3.to_s + anstwo = $4.to_s + ansthi = $5.to_s + ansfou = $6.to_s + anstrue = $7.to_i + end + end + end +end + + + +printf("<html> +<head> +<title>きみのこうげきだよ!</title> +<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"> +</head> +<body> +<h1>きみのこうげきだよ</h1> +<h2>#{damage}</h2> +<p>No.#{number}</p> +<div class=\"main\"> +<div> +<img border=\"1\" src=\"maou.png\" width=\"480\" height=\"320\" +alt=\"まおうのがぞうっぽいよ\" title=\"まおう\"> + +<h2>問題</h2> +<p>%s</p> + +<form method=\"POST\" action=\"ans.rb\"> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"1\">%s</bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"2\">%s</bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"3\">%s<br></bu\ +tton> +<button class=\"css3button\" type=\"submit\" name=\"answer\" value=\"4\">%s<br></bu\ +tton> +<input type=\"hidden\" name=\"dat\" value=\"%d\"> +</form> +</div> +</div> +</body> +</html>", quiz, ansone, anstwo, ansthi, ansfou, num)