码迷,mamicode.com
首页 > 其他好文 > 详细

创建圆形类,其中包括set,get方法

时间:2018-11-13 16:12:54      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:ret   using   ogr   turn   创建   new   gen   thread   3.1   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 圆
{
class circle
{
int center_x;
int center_y;
double Radius;
public int x
{
get { return center_x; }
set { center_x = value; }
}
public int y
{
get { return center_y; }
set { center_y = value; }
}
public double radius
{
get { return Radius; }
set { Radius = value; }
}
}
class Program
{
static void Main(string[] args)
{
circle myCircle = new circle();
myCircle.x = 10;
myCircle.y = 10;
myCircle.radius = 8;
Console.WriteLine("Center:({0},{1})", myCircle.x, myCircle.y);
Console.WriteLine("Radius:{0}", myCircle.radius);
Console.WriteLine("Circumference:{0}", (double)(2 * 3.141592653 * myCircle.radius));
Console.ReadKey();
}
}
}

创建圆形类,其中包括set,get方法

标签:ret   using   ogr   turn   创建   new   gen   thread   3.1   

原文地址:https://www.cnblogs.com/nnty/p/9952365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!