using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Count
{class Program
{
static public void f()//被调用 方法 必须是静态字段
{
int x;
int y;
x = 100;
Console.WriteLine("x contains "+x);//"+"必不可少;控制台标准输出流,换行。
y = x/2;
Console.Write("y contains x/2 :");//输出字符串"y contains x/2 :",不换行。
Console.WriteLine(y);//将计算结果y输入到字符串"y contains x/2 :"后面的位置,换行。
Console.ReadLine();//如果不加的话,那么程序即将一闪而过! 加了他的话你就可以看见程序运行的结果!
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Count
{
class Test
{
static void Main(string[] args)
{
Program program1 = new Program();//实例化,成program1对象。
Program.f();
}
}
}