必威体育Betway必威体育官网
当前位置:首页 > IT技术

C#——Console.WriteLine("{0}{1}")中的{0}{1}是什么意思

时间:2019-10-01 02:15:40来源:IT技术作者:seo实验室小编阅读:62次「手机版」
 

{0}

下面一个例子可以更直观的说明作用

namespace consoleAPPlication1

{

class Program

{

static void Main(string[] args)

{

    int a = 1;

    int b = 2;

    int c = 3;

    Console.WriteLine("{0}{1}{2}",a,b,c);

    Console.WriteLine("{1}{2}", a, b, c);

    //Console.WriteLine("{0}{1}{2}",  b, c);  //错误占了三个位置却只有两个值输出

    Console.WriteLine("{0}{1}{2}{0}{1}{2}{0}{1}{2}", a, b, c);

    Console.WriteLine("{0}{1}{2}", b, a, c);

    Console.WriteLine("{0},{1},{2}", a, b, c);

    Console.WriteLine("{0}  {1}  {2}", a, b, c);

    Console.WriteLine("{0}-{1}-{2}", a, b, c);

    Console.ReadLine();

}

}

}

运行结果如下:

相关阅读

C#入门——Console.Write()与Console.WriteLine()

两者区别:Console.Write(“abc”);   输出到控制台中,且在最后位置不换行,参数至少有一个以上。Console.WriteLine();输出到控制台

console统一接口实现

Console是外部发送的统一接口,ConsoleDev是具体实现的设备的代码,以下是结构

区别Console.readkey()、 Console.read()、Console.re

Console.readkey():监听键盘事件,按任意键执行退出。 Console.read():读取键盘输入的第一个字符,返回ASCII值。按下回车键退出 Cons

C#中的Console.WriteLine()详解

Console.WriteLine()表示向控制台写入字符串后换行。Console.WriteLine("鹿鼎记中的{0}的妻子有{1}、{2}、{3}等7个",strName[0],

Console.WriteLine()方法

using System;//导入System命名空间 using System.Collections.Generic; using System.Linq; using System.Text; using System.T

分享到:

栏目导航

推荐阅读

热门阅读