计算器 Count

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();
        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值