上QQ阅读APP看本书,新人免费读10天
设备和账号都新为新人
代码 2-1:定义变量(<VariableDemo>\Program.cs)
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace VariableDemo { class Program { static void Main(string[] args) { int num=1; Console.WriteLine("num={0}",num); } } }
在声明变量num的同时,我们将它的值设置为1。使用Ctrl+F5运行程序,会显示如下内容:
num=1
2. 常量的使用
声明一个常量时,必须使用const关键字,并且要设置它的类型和值,其值在设置后将不能在程序的运行过程中修改。如代码2-2所示,我们定义了常量MAX_NUMBER,然后我们显示它的值。