sbyte  byte  char   short   ushort  int   uint   long   ulong 有这些数据类型 要求将这些类型按从小范围到大的范围排列

解决方案 »

  1.   

    sbyte byte一个级别
    char short ushort一个级别
    int uint
    long ulong
      

  2.   

    老天,这怎么排序,非要排啊,那就:
    sbyte=byte<char=short=ushort<int=uint<long=ulong 
      

  3.   

    类型                    取值范围
    sbyte               -127~127
    short               -32768~32767
    int                 -2147483648~2147483647
    long                -9223372036854775808~9223372036854775807
    byte                 0~255
    ushort               0~65535
    uint                 0~4294967295
    ulong                0~18446744073709551615
    只能这样了