Math.PI
using System;class MyMain
{
static void Main()
{
double a, b , c , d;
a = Math.Sin(Math.PI);
b = Math.Sin(Math.PI / 2);
c = Math.Cos(Math.PI);
d = Math.Cos(Math.PI / 2);
Console.WriteLine(a);
Console.WriteLine(b);
Console.WriteLine(c);
Console.WriteLine(d);
Console.Read();
}
}//为什么 a 与 d 输出的不是 0 Math.PI 不是代表π,怎么用在 b c里就对,在而在 a d中就不对了呢? 还请前辈指点