x = y = 2;//從右向左賦值,x、y的值都是2
x =0;
y =y*2;
Console.WriteLine(x-y);
我這樣居然對了
x =0;
y =y*2;
Console.WriteLine(x-y);
我這樣居然對了
2016-04-07
i just feel that the course is not enough for programmer.
2016-04-07
string[,] name = new string[8, 2] { { "吳松", "89" }, { "錢東宇", "90" },
{ "伏晨", "98" }, { "陳陸", "56" }, { "周蕊", "60" }, { "林日鵬", "91" },
{ "何昆", "93" }, { "關欣", "85" } };
string[,] highest = new string[1, 2] { { "0", "0" } };
{ "伏晨", "98" }, { "陳陸", "56" }, { "周蕊", "60" }, { "林日鵬", "91" },
{ "何昆", "93" }, { "關欣", "85" } };
string[,] highest = new string[1, 2] { { "0", "0" } };