标签:技术分享 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); }
标签:技术分享 http nbsp blog image 技术 class ++ printf
原文地址:http://www.cnblogs.com/liangjinjie/p/6024994.html