第一个C#程序
今天我看了一下C#程序设计,感觉和C++有点相同,但照书上所说的写了一段代码,但最后却没有输出,真是郁闷
代码:
int x,y,z;
x=7;
y=5;
z=x+y;
System.Console.WriteLine("z=",z);
怎么点击button1按钮还是没有输出呀??
static void Main()
{
Application.Run(new Form1());
}
private void button1_Click(object sender, System.EventArgs e)
{
int x,y,z;
x=5;
y=5;
z=x+y;
System.Console.WriteLine("z={0}",z);
}
}
}