C#で利用可能な変数の型とそれぞれの最大値最小値について記述します。
変数とは
データを一時的に記憶させておくための入れ物に名前を付けたものです。プログラム内でデータを参照したり計算結果を代入したりする際に利用します。
C#で利用可能な変数の型一覧について
各変数の最大値と最小値を求めるソースコード
using System;
class Hensu_MaxMin
{
public static void Main()
{
// 各変数の最大値と最小値を表示する。
string format = "{0, -8}:{1}~{2}", line = "*=---------------------------------------------------------------------=*";
Console.WriteLine(line);
Console.WriteLine("変数名 :最小値 ~ 最大値");
Console.WriteLine(line);
Console.WriteLine(format, "sbyte", sbyte.MinValue, sbyte.MaxValue);
Console.WriteLine(format, "short", short.MinValue, short.MaxValue);
Console.WriteLine(format, "int", int.MinValue, int.MaxValue);
Console.WriteLine(format, "long", long.MinValue, long.MaxValue);
Console.WriteLine(format, "byte", byte.MinValue, byte.MaxValue);
Console.WriteLine(format, "ushort", ushort.MinValue, ushort.MaxValue);
Console.WriteLine(format, "uint", uint.MinValue, uint.MaxValue);
Console.WriteLine(format, "ulong", ulong.MinValue, ulong.MaxValue);
Console.WriteLine(format, "float", float.MinValue, float.MaxValue);
Console.WriteLine(format, "double", double.MinValue, double.MaxValue);
Console.WriteLine(format, "decimal", decimal.MinValue, decimal.MaxValue);
Console.WriteLine(line);
}
}
出力結果
説明は以上となります。
この記事が誰かの助けになれば幸いです。