java入門5章まで

意味や理解を深めるため、制限時間を無くし一定の問題数を出題する仕様にしました。
タイピングの速度向上よりもjavaへの理解を重視しています。
ついでにタイピングで押しにくい記号もいれときました。
随時、問題を増やし進めていきます。
関連タイピング
-
JAVAの練習用です。
プレイ回数1180長文120秒 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万1071打 -
国管理空港をタイピングします
プレイ回数2887かな60秒 -
100回あいうえおを打とう!
プレイ回数14万連打500打 -
小指・薬指の鍛錬はスピードアップへの近道!(両手対応)
プレイ回数5003562打 -
にゃ にゅ にょ
プレイ回数174かな653打 -
出てくる単語をタイプしてください
プレイ回数655短文676打 -
両手人差し指(rtgbvuyhnm)の入力
プレイ回数446短文英字476打
問題文
(public class Sample {})
public class Sample {}
(public static void main(String[] args) {})
public static void main(String[] args) {}
(System.out.println();)
System.out.println();
(/* */)
/* */
(//)
//
(byte)
byte
(short)
short
(int)
int
(long)
long
(float)
float
(double)
double
(boolean)
boolean
(char)
char
(String)
String
(final)
final
(+)
+
(-)
-
(*)
*
(/)
/
(%)
%
(=)
=
(+=)
+=
(-=)
-=
(*=)
*=
(/=)
/=
(%=)
%=
(++)
++
(--)
--
(System.out.print();)
System.out.print();
(Math.max(,);)
Math.max(,);
(Math.min(,);)
Math.min(,);
(Integer.parse.Int();)
Integer.parse.Int();
(new java.util.Random().nextInt();)
new java.util.Random().nextInt();
(new java.util.Scanner(System.in).nextLine();)
new java.util.Scanner(System.in).nextLine();
(new java.util.Scanner(System.in).nextInt();)
new java.util.Scanner(System.in).nextInt();
(if (sample == true) {})
if (sample == true) {}
(else {})
else {}
(while {})
while {}
(==)
==
(!=)
!=
(>)
>
(<)
<
(>=)
>=
(<=)
<=
(.equals)
.equals
(&&)
&&
(||)
||
(switch (sample) {})
switch (sample) {}
(case 1:)
case 1:
(break;)
break;
(default:)
default:
(do {} while();)
do {} while();
(for (int i = 0; i < 10; i++) {})
for (int i = 0; i < 10; i++) {}
(int [] samples;)
int [] samples;
(samples = new int [] {,})
samples = new int [] {,}
(samples.length)
samples.length
(sample();)
sample();
(return sample;)
return sample;