プログラミング(C#)の用語でタイピング練習

5分以内でクリアできるようにしよう
5分以内でクリアできるようになるまで練習しよう。一朝一夕では上達しない。辛抱強く何日も練習しよう。少しずつだけど確実に上達する。
問題文
ふりがな非表示
ふりがな表示
(public)
public
(private)
private
(protected)
protected
(void)
void
(int)
int
(float)
float
(string)
string
(bool)
bool
(list)
List
(if)
if
(else)
else
(else if)
else if
(==)
==
(!=)
!=
(<)
<
(<=)
<=
(>)
>
(>=)
>=
(&&)
&&
(||)
||
など
(true)
true
(false)
false
(for)
for
(foreach)
foreach
(while)
while
(namespace)
namespace
(using)
using
(static)
static
(class)
class
(virtual)
virtual
(override)
override
(int a = 100;)
int a = 100;
(a = int.parse(b);)
a = int.Parse(b);
(float b = 1.5f;)
float b = 1.5f;
(string s = ”sample”;)
string s = "sample";
(console.writeline(”helloworld”);)
Console.WriteLine("HelloWorld");
(for(int i = 0; i < 100; i++))
for(int i = 0; i < 100; i++)
(int[] array = new int[10];)
int[] array = new int[10];
(list<int> a = new list<int>();)
List<int> a = new List<int>();