0
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?

レトロPCのためのBASIC講座5 データおよび変数の型

Posted at

前回のおさらい

" で囲んだデータは文字列を意味し、変数名の後ろに$のついた変数は文字列型を覚えることのできる変数という話をしました。

レトロPCのためのBASIC講座4

他の型

このように、コンピュータの中では変数にもデータにも型があり
%がつく数値と変数は整数型

#がつくと倍精度浮動小数点型、
何もつかないものは単精度浮動小数点
となっています。

リテラル

ダブルクオート(”)で囲まれた文字列や直に書かれている数値をリテラルといいます。
例えば1.1は何もついていないので単精度浮動小数点のリテラルということになりますが
1.1#と書くと倍精度浮動小数点の1.1ということになります。

今回の動画

今回は、動画はありません。

0
0
0

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
0
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?