码迷,mamicode.com
首页 > Windows程序 > 详细

《21天学通C#》使用.NET数据类型定义变量

时间:2018-11-08 16:17:40      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:read   main   \n   reading   names   bsp   变量   ring   nbsp   

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

namespace shiyong.NET数据类型定义变量
{
class Program
{
static void Main(string[] args)
{
System.Int32 my_varibale = 4;
System.Double PI = 3.14159;
Console.WriteLine("\nmy_variable is {0}", my_varibale);
Console.WriteLine("\nPI is {0}", PI);
Console.WriteLine("按任意键退出");
Console.ReadKey();
}
}
}

技术分享图片

 

《21天学通C#》使用.NET数据类型定义变量

标签:read   main   \n   reading   names   bsp   变量   ring   nbsp   

原文地址:https://www.cnblogs.com/nnty/p/9929117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!