平方根のサンプル

  1. using System;
  2. using System.Text;
  3. namespace ConsoleApplication1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             // √2(ルート2) ひとよひとよにひとみごろ
  10.             Console.WriteLine("Math.Sqrt(2) = " + Math.Sqrt(2));
  11.             // √3(ルート3) ひとなみにおごれやおなご
  12.             Console.WriteLine("Math.Sqrt(3) = " + Math.Sqrt(3));
  13.             // √4(ルート4)
  14.             Console.WriteLine("Math.Sqrt(4) = " + Math.Sqrt(4));
  15.             Console.ReadLine();
  16.         }
  17.     }
  18. }

image

戻る