C#程序演示Console.Write()和Console.WriteLine()的示例

2023-11-14

Console.Write() and Console.WriteLine() methods are used to print the text (values) on the Console. Console.Write() prints only the text, while Console.WriteLine() prints a new line after the text.

Console.Write()Console.WriteLine()方法用于在控制台上打印文本(值)。 Console.Write()仅打印文本,而Console.WriteLine()在文本之后打印新行。

Read more: Difference between Console.WriteLine() and Console.Write() in C#

阅读更多: C#中的Console.WriteLine()和Console.Write()之间的区别

Example:

例:

// C# program to demonstrate example of 
// Console.Write() and Console.WriteLine()
using System;
using System.IO;
using System.Text;

namespace IncludeHelp
{
    class Test
    {
        // Main Method 
        static void Main(string[] args)
        {

            Console.WriteLine("This is line1"); 
            Console.WriteLine("This is line2");
            Console.Write("This is line3");
            Console.Write("This is line4");            
            
            //hit ENTER to exit the program
            Console.ReadLine();
        }
    }
}

Output

输出量

This is line1
This is line2
This is line3This is line4


翻译自: https://www.includehelp.com/dot-net/console-write-and-console-writeline-example-in-c-sharp.aspx

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

C#程序演示Console.Write()和Console.WriteLine()的示例 的相关文章

随机推荐