C 语言编写一个程序计算2*4*6*8*...*100,要求精确值
int i = 2;int result = 1;while(i<=100){result = result *i;i+=2;}不知道你的精确值是什么意思,所以就这么写