java入門5章まで

意味や理解を深めるため、制限時間を無くし一定の問題数を出題する仕様にしました。
タイピングの速度向上よりもjavaへの理解を重視しています。
ついでにタイピングで押しにくい記号もいれときました。
随時、問題を増やし進めていきます。
関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数34万1071打 -
キーボード上段の数字と記号の入力練習です
プレイ回数652短文264打 -
100回あいうえおを打とう!
プレイ回数14万連打500打 -
短文1
プレイ回数1053短文かな86打 -
正確ではありません
プレイ回数264短文かな93打 -
ホームポジションから1段下のキー(zxcvm、。・)の入力
プレイ回数277短文英字420打 -
Java初心者です。よろしくお願いします。
プレイ回数1800英語短文235打 -
小文字の基礎を覚えましょう。
プレイ回数1333かな63打
問題文
(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;