首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
C语言实现计算n的阶乘
C语言实现计算n的阶乘
tech
2022-09-03
89
#
include
<stdio.h>
//计算n的阶乘
int
main
(
)
{
int
n
=
1
;
int
a
=
1
;
printf
(
"请输入一个正整数\n"
)
;
scanf
(
"%d"
,
&
n
)
;
while
(
n
>
1
)
{
a
=
a
*
n
;
n
--
;
}
if
(
n
=
1
)
{
printf
(
"%d\n"
,
a
)
;
}
return
0
;
}
输出结果:
转载请注明原文地址:https://tech.qufami.com/read-4073.html
最新回复
(
0
)