数値型のデータ型、sbyte,short int,long,float,double,decimal型の最大値、最小値をそれぞれMacValue,MinValueを使用して出力してみる。
using System;
class MainClass
{
static void Main()
{
Console.Write(sbyte.MinValue+" "
+sbyte.MaxValue+"¥n"
+short.MinValue+" "
+short.MaxValue+"¥n"
+int.MinValue+" "
+int.MaxValue+"¥n"
+long.MinValue+" "
+long.MaxValue+"¥n"
+float.MinValue+" "
+float.MaxValue+"¥n"
+double.MinValue+" "
+double.MaxValue+"¥n"
+decimal.MinValue+" "
+decimal.MaxValue+"¥n");
}
}
0 コメント:
コメントを投稿