scooter2005
Member
این برنامه شی کلاس هست ولی چند تا خطای اساسی داره ممنون اگر کسی از دوستان کمک کنه خطاش رو رفع کنیم
کد:
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication4
{
//Create Class
class cricle
{
private float x, y, r;
circle float xi;
circle float yi;
circle float ri;
x=xi;
y=yi;
r=ri;
//property Cretae
public float x
{
set {
Get { return (y) }
x=value;
}
get{
return(x);
}
}
public float y
{
set { y=value;
}}
public float R{
set {
if (value>=0)
r=value;
else
r=0;
}
get {
return r;
}
public void move (f float a, f float b)
{
x=a;
y=b;
{
public void z(f float a)
{
r * =a;
}
static void Main(string[] args)
{
circle a,b;
a=new circle (2,3,b);
b=new circle (1,1,2);
a.R=3;
Console.WriteLine(b.R);
a.move(a.x+3,a.r+3);
}
}
}