标签:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TypeMaxMinValue { class Program { static void Main(string[] args) { PrintDataRange(); } static void PrintDataRange() { System.Console.WriteLine("int类型的最大值: {0},最小值: {1}", int.MaxValue, int.MinValue); System.Console.WriteLine("uint类型的最大值: {0},最小值: {1}", uint.MaxValue, uint.MinValue); System.Console.WriteLine("byte类型的最大值: {0},最小值: {1}", byte.MaxValue, byte.MinValue); System.Console.WriteLine("sbyte类型的最大值: {0},最小值: {1}", sbyte.MaxValue, sbyte.MinValue); System.Console.WriteLine("short类型的最大值: {0},最小值: {1}", short.MaxValue, short.MinValue); System.Console.WriteLine("ushort类型的最大值: {0},最小值: {1}",ushort.MaxValue, ushort.MinValue); System.Console.WriteLine("long类型的最大值: {0},最小值: {1}", long.MaxValue, long.MinValue); System.Console.WriteLine("ulong类型的最大值: {0},最小值: {1}", ulong.MaxValue, ulong.MinValue); System.Console.WriteLine("float类型的最大值: {0},最小值: {1}", float.MaxValue, float.MinValue); System.Console.WriteLine("double类型的最大值: {0},最小值: {1}", double.MaxValue, double.MinValue); System.Console.WriteLine("decimal类型的最大值: {0},最小值: {1}", decimal.MaxValue, decimal.MinValue); System.Console.ReadLine(); } } }
标签:
原文地址:http://www.cnblogs.com/baobaodong/p/5124325.html