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

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

时间:2021-07-01 16:42:58      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:测试案例   ogr   alt   double   变量定义   sharp   ble   image   stat   

   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();
}
}
}

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

标签:测试案例   ogr   alt   double   变量定义   sharp   ble   image   stat   

原文地址:https://www.cnblogs.com/zhuiqiuzhuoyueyouminxing/p/14956605.html

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