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

2021-07-02 10:06

阅读:405

标签: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


评论


亲,登录后才可以留言!