1. 程式人生 > >程式設計求指定半徑r的圓的面值和周長,並輸出計算結果

程式設計求指定半徑r的圓的面值和周長,並輸出計算結果

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace _2._3._1
{
    class Program
    {
        static void Main(string[] args)
        {
            double a, b, r;
            r = 5;
            
            a = Math.Pow(r, 2) *Math. PI;
            b = 2 * r *Math. PI;
            Console.WriteLine("圓的面值{0}",a);
            Console.WriteLine("圓的周長{0}",b);
            Console.Read();
            


        }
    }
}