提问人:shampeyndadi 提问时间:11/16/2023 最后编辑:shampeyndadi 更新时间:11/16/2023 访问量:103
编写一个函数,在给定正整数 n [closed] 的情况下计算以下内容
Write a function that computes for the following given a positive integer n [closed]
问:
我不知道如何转换表达式。我相信使用for循环来解决这个问题是正确的。我只是不知道如何将方程转换为 c(阶乘)。如果有人能帮助我,我将不胜感激。谢谢!(见附图查看问题)
#include <stdio.h>
int main()
{
int n;
printf("Enter number: ");
scanf("%d", &n);
for (int i = 1; i<=n; i++)
{
/*expression*/
}
return 0;
}
答: 暂无答案
评论
n=5