111,126
社区成员
发帖
与我相关
我的任务
分享 class Program
{
[DllImport("msvcrt.dll")]
public static extern double frexp(double val, out int eptr);
static void Main(string[] args)
{
int eptr;
double d = frexp(16.400000, out eptr);
Console.WriteLine(eptr + " " + d);
}
}
/*输出结果:
5 0.5125
请按任意键继续. . .*/