c#
関連タイピング
-
ネットで話題の・・・
プレイ回数661 長文107打 -
プレイ回数1022 長文かな60秒
-
50音がランダムで出てきます。
プレイ回数1.1万 短文かな137打 -
50音がランダムで出るタイピング
プレイ回数1191 短文かな221打 -
プレイ回数795 かな289打
-
タイトルの通りです。
プレイ回数5038 かな433打 -
ネットで話題の・・・
プレイ回数879 長文109打 -
「転生したらスライムだった件」のスキルタイピングです
プレイ回数1.5万 かな304打
問題文
ふりがな非表示
ふりがな表示
(unityengine.debug.log(”hello world”))
UnityEngine.Debug.Log("hello world")
(int name = ”15”;)
int name = "15";
(float point = 1.5f;)
float point = 1.5f;
(bool ok = true;)
bool ok = true;
(char moji = p;)
char moji = p;
(string name = ”みかん”;)
string name = "みかん";
(for(int i = 1; i < 10; i++))
for(int i = 1; i < 10; i++)
(unityengine.debug.log(i);)
UnityEngine.Debug.Log(i);
(if(hp<1)
{unityengine.debug.log(”し”))
if(HP<1)
{UnityEngine.Debug.Log("死")
(int[] points = new int[[4]];)
int[] points = new int[[4]];
(void hello()
{debug.log(”hello”);})
void hello()
{Debug.Log("hello");}
(hello();)
hello();
(void hello(int g))
void hello(int g)
({unityengine.debug.log(”やく”+ g +”さい”)})
{UnityEngine.Debug.Log("約"+ g +"才")}
(hello(30);)
hello(30);
(switch (a))
switch (a)
({case 0:)
{case 0:
(unityengine.debug.log(”a=0”);)
UnityEngine.Debug.Log("a=0");
(break;})
break;}