using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//命名空间
namespace 第一节课
{
//类
class Program
{
//主函数,一个项目有且只有一个主函数,它是程序的入口
static void Main(string[] args)
{
//数据类型 变量名 = 值
//可以分开写,也可以同时定义多个
int i = 0;
double b = 1.23d;//在1.23后面加d就是double类型
float f = 1.23f; //在1.23后面加f就是float类型
decimal m = 1.23m; //在1.23后面加m就是decimal类型
const int a = 16; //在数据类型前面加 const 就会变成常量
Console.WriteLine(m);
Console.ReadLine();
}
}
}