代码如下:
using System;class float_mixed_Test{ static void Main() { int x = 2; float y = 6.5f; short z = 11; Console.WriteLine("最后的结果是: {0}", x * y / z); }}
代码如下:
using System;class float_mixed_Test{ static void Main() { int x = 2; float y = 6.5f; short z = 11; Console.WriteLine("最后的结果是: {0}", x * y / z); }}