c#程序设计
设有一个描述坐标点的CPoint类,其私有成员变量X、Y代表一个点的x,y坐标值。编写程序实现以下功能:利用构造函数传递参数,并设其默认参数值为60和75.利用成员方法d...
设有一个描述坐标点的CPoint类,其私有成员变量X、Y代表一个点的x,y坐标值。编写程序实现以下功能:利用构造函数传递参数,并设其默认参数值为60和75.利用成员方法display输出这个默认值;利用公有成员方法setpoint()将坐标值修改为(80,150),并利用成员方法输入修改后的坐标值
还是想请教高手解决一下。。。呵呵。。。 展开
还是想请教高手解决一下。。。呵呵。。。 展开
1个回答
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CPoint
{
class Program
{
static void Main(string[] args)
{
CPoint c = new CPoint();
c.display();
c.setpoint(80, 150);
c.display();
Console.ReadKey();
}
}
class CPoint
{
double X, Y;
public CPoint()
{
X = 60;
Y = 75;
}
public void setpoint(double x, double y)
{
this.X = x;
this.Y = y;
}
public void display()
{
Console.WriteLine("坐标值:({0}, {1})",this.X, this.Y);
}
};
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CPoint
{
class Program
{
static void Main(string[] args)
{
CPoint c = new CPoint();
c.display();
c.setpoint(80, 150);
c.display();
Console.ReadKey();
}
}
class CPoint
{
double X, Y;
public CPoint()
{
X = 60;
Y = 75;
}
public void setpoint(double x, double y)
{
this.X = x;
this.Y = y;
}
public void display()
{
Console.WriteLine("坐标值:({0}, {1})",this.X, this.Y);
}
};
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |