c#用牛顿法计算根号下2的值
Posted 猪冰龙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#用牛顿法计算根号下2的值相关的知识,希望对你有一定的参考价值。
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 牛顿法计算根号下2的值 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 double a = 0, b = 2, t = 0; 14 while (b - a > 0.0000001) 15 { 16 t = (a + b) / 2; 17 if (t * t - 2 == 0) 18 { 19 Console.WriteLine(t); 20 break; 21 } 22 else if ((t * t - 2) > 0) 23 { 24 b = t; 25 Console.WriteLine(t * t - 2); 26 } 27 else 28 { 29 a = t; 30 Console.WriteLine(t * t - 2); 31 } 32 } 33 Console.WriteLine("sqt(2)={0}",t); 34 } 35 } 36 }
http://www.51taoshi.com/ucenter/pub/diaryShow.action?did=140525134206646418
以上是关于c#用牛顿法计算根号下2的值的主要内容,如果未能解决你的问题,请参考以下文章