早教吧作业答案频道 -->其他-->
谁能用C#写一个程序?内容为:求斐波那契分数数列前20项之和即求2/1,3/2,5/3,8/5,13/8...前20项之和一定要C#写
题目详情
谁能用C#写一个程序?内容为:求斐波那契分数数列前20项之和
即求 2/1 ,3/2 ,5/3 ,8/5,13/8 ...前20项之和 一定要C#写
即求 2/1 ,3/2 ,5/3 ,8/5,13/8 ...前20项之和 一定要C#写
▼优质解答
答案和解析
//分别使用两个递归求分子分母即可:
代码如下:
using System;
namespace 数列求和
{
class Program
{
static void Main(string[] args)
{
int result = 0;
for (int i = 1; i
代码如下:
using System;
namespace 数列求和
{
class Program
{
static void Main(string[] args)
{
int result = 0;
for (int i = 1; i
看了 谁能用C#写一个程序?内容为...的网友还看了以下: