请大家看一看
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); } } } 这样不可以吗?
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); } } } 这样不可以吗?
2016-04-30
举报