C#编程问题
输入一个整数n的值,按下式求出y的值,并输出n和y的值(y用浮点数表示):y=1!+2!+3!+...n!...
输入一个整数n的值,按下式求出y的值,并输出n和y的值(y用浮点数表示):y=1!+2!+3!+...n!
展开
展开全部
新建一个控制台程序
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace baidu
{
class Program
{
static void Main(string[] args)
{
double anwser=0;
int input = Convert.ToInt32(Console.ReadLine());
for (int j = 1; j < input + 1; j++)
{
anwser += foo(j);
}
Console.WriteLine(anwser);
Console.ReadKey();
}
static double foo(int number)
{
double temp=1;
for(int i=1;i<number+1;i++)
{
temp *= i;
}
return temp;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace baidu
{
class Program
{
static void Main(string[] args)
{
double anwser=0;
int input = Convert.ToInt32(Console.ReadLine());
for (int j = 1; j < input + 1; j++)
{
anwser += foo(j);
}
Console.WriteLine(anwser);
Console.ReadKey();
}
static double foo(int number)
{
double temp=1;
for(int i=1;i<number+1;i++)
{
temp *= i;
}
return temp;
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
参考下看看
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询