码迷,mamicode.com
首页 > 其他好文 > 详细

do-while循环算5的阶乘

时间:2016-11-03 02:17:24      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:技术分享   http   nbsp   blog   image   技术   class   ++   printf   

#include "stdio.h"
void main()
{
    int d=1,r=1;
    do
    {
        r*=d;
        d++;
        
    }while(d<=5);
    printf("5的阶乘5!为:%d",r);
}
#include "stdio.h"
void main()
{
   int d=1,r=1;
   while (d<=5)
   {
           r*=d;
           d++;
   }
   printf("while循环计算5的阶乘:%d",r);
}
#include "stdio.h"
void main()
{
   int d,r=1;
   for (d=1;d<=5;d++)
   {
           r*=d;
   }
   printf("for循环计算5的阶乘:%d",r);
}

技术分享

 

do-while循环算5的阶乘

标签:技术分享   http   nbsp   blog   image   技术   class   ++   printf   

原文地址:http://www.cnblogs.com/liangjinjie/p/6024994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!