C#中的变量定义以及初始化测试案例1 (一看就懂)

时间:2021-07-01 16:42:58   收藏:0   阅读:0

   https://www.runoob.com/csharp/csharp-variables.html

输出

技术图片

 

 

变量声明以及初始化,代码案例1 

using System;

#region 1helloword程序
//namespace ChuXueZheZhiNan1
//{
// class Program
// {
// static void Main(string[] args)
// {
// Console.WriteLine("Hello World!");
// Console.ReadLine();

// }
// }
//}
#endregion


namespace ChuXueZheZhiNan1
{
class Program
{
static void Main(string[] args)
{
short a;
int b;
double c;
//声明变量
short d;
int e;
double f;

/* 实际初始化 */
a = 10;
b = 20;
c = a + b;


d = 1;
e = 2;
f = d + e;
Console.WriteLine("a = {0}, b = {1}, c = {2}", a, b, c);
Console.WriteLine("d = {0}, e = {1}, f = {2}", d, e, f);
Console.ReadLine();
}
}
}

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!