console.readline和console.read是有区别的,console.readline是以回车符结束,而console.read是读一个字符,比如说有
int c = Console.Read();
int d = Console.Read();
int e = Console.Read();
int g = Console.Read();
运行这段程序,比如你输入 12回车,注意此时你输入的实际上是4个字符,1、2、回车、换行,所以结果c=49,d=50,e=13(回车符),g=10(换行符)
你上面也是一样的原因,正因为如此,所以console.read一般极少在程序中使用。