scooter2005
Member
ضمن تریس برنامه می خوام بدونم x دقیقا طی مراحل چند میشه و در پایان به چه عددی میرسیم
class Base
{
public Base()
{
int x=13;
x -= x;
System.Console.WriteLine(x);
}
public Base (int x)
{
x += x;
}
}
class Derived : Base
{
public Derived(int x)
{
x = 2* x;
System.Console.WriteLine(x);
}
}
static class program1_1
{
static void Main()
{
int x=1;
System.Console.WriteLine(x);
{
{
آخرین ویرایش: