分别用三种循环语句(while语句、do-while语句、for语句)各编写一个程序实现求1 20的累乘,即:
题目
分别用三种循环语句(while语句、do-while语句、for语句)各编写一个程序实现求1 20的累乘,即:
1 × 2 × 3 × …… × 20
总结出三种循环语句哪种实现起来方便、灵活.
答案
//while写法
#include <stdio.h>
main()
{
long total=1, i=1;
while(i<=20)
{
total = total * i;
i++;
}
printf("result=%d
", total);
}
//do-while写法
#include <stdio.h>
main()
{
long total=1, i=1;
do
{
total = total * i;
i++;
} while(i<=20);
printf("result=%d
", total);
}
//for写法
#include <stdio.h>
main()
{
long total=1, i;
for(i=1; i<=20; i++)
total = total * i;
printf("result=%d
", total);
}
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
最新试题
热门考点