这可如何是好?
namespace Test
{
class Program
{
static void Main(string[] args)
{
double x, y;
x = y = 2;//从右向左赋值,x、y的值都是2
x /= 0.5;
y *= 2;
Console.WriteLine(x-y);
}
}
}
上面的代码错了么。。不是输出0么 2/0.5 不就是4 2*2也是4 4-4 不就是0了 哪错了 我看别人的代码也和我一样啊。。
namespace Test
{
class Program
{
static void Main(string[] args)
{
double x, y;
x = y = 2;//从右向左赋值,x、y的值都是2
x /= 0.5;
y *= 2;
Console.WriteLine(x-y);
}
}
}
上面的代码错了么。。不是输出0么 2/0.5 不就是4 2*2也是4 4-4 不就是0了 哪错了 我看别人的代码也和我一样啊。。
2015-12-31
举报