1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

IchigoJamでタイピングソフト(その1)キーレイアウト表示

Posted at

IchigoJamを子どもが使うとき、キーボードになれるためのプログラム。

配置を覚えつつ、遊べるようなアプリを作るためのその1。

■もくじ
キー配置表示(その1※このページ)
問題出題(その2)
正解判定&次へorプログラム終了処理(その3)

■使う関数
STR関数、代入された文字列の指定した文字位置、文字数を返します
STR(変数名+開始からずらす文字位置,出力文字数) 

■コード
image.png
5 CLS
10 A="QWERTYUIOPASDFGHJKLZXCVBNM
30 FOR I=0 TO 25
40 ?STR$(A+I,1);" ";
45 IF (I=9 OR I=18 OR I=25) THEN ?:?
50 NEXT

■実行結果
image.png

■WEBで試したい方
下記アクセス後 RUN[エンター] で実行されます
https://fukuno.jig.jp/app/IchigoJam/#5%20CLS%0A10%20A%3D%22QWERTYUIOPASDFGHJKLZXCVBNM%0A30%20FOR%20I%3D0%20TO%2025%0A40%20%3FSTR%24(A%2BI%2C1)%3B%22%20%22%3B%0A45%20IF%20(I%3D9%20OR%20I%3D18%20OR%20I%3D25)%20THEN%20%3F%3A%3F%20%0A50%20NEXT%0A

■参考ページ
文字列対応の IchigoJam ver 1.2β4 でジャンケンゲーム改良
https://fukuno.jig.jp/1266

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?