java入門5章まで
入門書に合わせたタイピング
とにかく打って覚えて慣れるしかない!
意味や理解を深めるため、制限時間を無くし一定の問題数を出題する仕様にしました。
タイピングの速度向上よりもjavaへの理解を重視しています。
ついでにタイピングで押しにくい記号もいれときました。
随時、問題を増やし進めていきます。
意味や理解を深めるため、制限時間を無くし一定の問題数を出題する仕様にしました。
タイピングの速度向上よりもjavaへの理解を重視しています。
ついでにタイピングで押しにくい記号もいれときました。
随時、問題を増やし進めていきます。
関連タイピング
-
ひらがなバラバラです。頑張ってください。
プレイ回数272 短文かな87打 -
python 基本
プレイ回数914 英字120打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数37万 1071打 -
小学生向けタイピング上級です。
プレイ回数541 長文725打 -
これからどんどんタイピング投稿しますよ
プレイ回数109 かな261打 -
短文1
プレイ回数1136 短文かな86打 -
ホームポジションの練習です。
プレイ回数6832 短文英字164打 -
Javaプログラミングにおける超入門タイピング練習です.
プレイ回数4758 短文英字90秒
問題文
ふりがな非表示
ふりがな表示
(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;