for循环语句计算69!的值
问题描述:
for循环语句计算69!的值
答
int s=1;
for(int i=2;i<70;i++)
{
s=s*i;//循环退出时S的值就是69的阶乘
}