- using System;
- using System.Text;
-
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- // 2の2乗
- Console.WriteLine("Math.Pow(2, 2) = " + Math.Pow(2, 2));
- // 2の3乗
- Console.WriteLine("Math.Pow(2, 3) = " + Math.Pow(2, 3));
-
- Console.ReadLine();
- }
- }
- }
|