这一段程序在比较变量 x 和 y 的大小,会返回 true 还是 false ?
如果需返回 true ,是否要修改某个地方?
using System; using System.Collections.Generic; using System.Text; namespace Test { class Program { static void Main(string[] args) { double x = 3.5; int y = 3; Console.WriteLine((int)x>y); } } }