分类: C/C++
2007-12-26 17:32:53
dzt_tomdu2009-06-23 10:08:51
顺便说一下上边的程序有问题,后边输出多了一个,忘了删掉了。哈哈哈哈 c# using System; using System.Collections.Generic; using System.Text; namespace testBt { class Program { static void Main(string[] args) { Console.WriteLine("int:{0},int16:{1},int32:{2},int64:{3}", sizeof(int),sizeof(Int16),sizeof(Int32),sizeof(Int64)); } } }