📜  程序以C#打印新行

📅  最后修改于: 2021-05-29 14:44:22             🧑  作者: Mango

有多种方法可以在消息中打印新行

  • 通过使用: \ n –打印新行。
  • 通过使用: \ x0A或\ xA (\ n的ASCII字面量)–打印新行。
  • 通过使用: Console.WriteLine() –打印新行。

例子:

Input  : GeeksForGeeks
Output : Geeksfor
         Geeks
        
Input : Save World
Output: Save
        World

下面是上述方法的实现:

范例1:

// C# program to print a new line
using System;
using System.IO;
using System.Text;
  
namespace geeks
{
    class GFG
    {
        // Main Method 
        static void Main(string[] args)
        {
            // by using \n
            Console.WriteLine("Geeksfor\nGeeks");
              
            // by using \x0A
            Console.WriteLine("Geeks\x0A ForGeeks");
              
        }
    }
}

输出:

Geeksfor
Geeks
Geeks
 ForGeeks

范例2:

// C# program to print a new line
using System;
using System.IO;
using System.Text;
   
namespace geeks
{
    class GFG
    {
        // Main Method 
        static void Main(string[] args)
        {
               
            Console.WriteLine("Print a new line");
              
            // print only next line
            Console.WriteLine();
              
            // by using \n
            Console.WriteLine("Save\nWorld");
              
            // by using \x0A
            Console.WriteLine("Stay\x0ASafe");
               
   
            // ENTER to exit the program
            Console.ReadLine();
        }
    }
}

输出:

Print a new line

Save
World
Stay
Safe