/*
* 程序头部注释开始
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:计算数列的极限值
* 作 者:薛广晨
* 完成日期:2012 年 10 月 29 日
* 版 本号:x1.0
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:数列a的各项表达式为:a1= ,a2= ,a3= ,…。编写控制台应用程序,计算数列的极限值(n=1000)
* 程序输出:
* 程序头部的注释结束
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
double s = limit(1000);
Console.WriteLine("a1000 = {0}", s);
Console.ReadKey();
}
public static double limit(int num)
{
double s = 0;
for (int i = 0; i < num; i++)
{
s += 2;
s = Math.Sqrt(s);
}
return s;
}
}
}
运行结果: