蓝海。 发表于 2015-1-3 12:16:55

【→C#变量 02←】

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 变量
{
    class Program
    {
      static void Main(string[] args)
      {
            string name = "William naismith";//字符串 有一个,0个或多个字符组成,用引号引起
            char sex='男';//字符型 只能由一个字符组成,用单引号引起
            int old = 14;//整数型 范围十位数
            long QQnumber = 1642785615;//长整数型 范围17位数
            Console.WriteLine("name:" + name);
            Console.WriteLine("sex:" + sex);
            Console.WriteLine("old:" + old);
            Console.WriteLine("QQnumber:" + QQnumber);
            Console.ReadKey();

      }
    }
}
页: [1]
查看完整版本: 【→C#变量 02←】