c#hello world_C#| 打印消息/文本(用于打印Hello world的程序)
c#hello world
To print the message/text or any value – we use two functions:
要打印消息/文本或任何值–我們使用兩個功能:
Console.Write ();
Console.Write();
This function displays text, values on the output device and does not insert a new line after the message.
此功能在輸出設(shè)備上顯示文本,值,并且在消息后不插入新行。
Console.WriteLine();
Console.WriteLine();
This function displays text, values on the output device and inserts a new line after the message.
此功能在輸出設(shè)備上顯示文本,值,并在消息后插入新行。
So, in this program – we are printing some of the messages with and without inserting new line after the message. And also explaining how we can print new line using escape sequence \n between the messages.
因此,在此程序中–我們正在打印某些消息,在消息之后插入或不插入新行。 還要說明如何使用消息之間的轉(zhuǎn)義序列\(zhòng) n打印新行。
Program:
程序:
/*c# basic program to print messages*/ using System;class HelloWorld {static void Main() {//print text without inserting new line after the messageConsole.Write("Hello World,");Console.Write("How are you?");//print new lineConsole.WriteLine();//print text with new line after the messageConsole.WriteLine("Hello World");Console.WriteLine("How are you?");//print new line using escape sequence just like C languageConsole.WriteLine("Hello World\nHow are you?");} }Output
輸出量
Hello World,How are you? Hello World How are you? Hello World How are you?翻譯自: https://www.includehelp.com/dot-net/print-messages-in-c-sharp.aspx
c#hello world
總結(jié)
以上是生活随笔為你收集整理的c#hello world_C#| 打印消息/文本(用于打印Hello world的程序)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: scala 类中的对象是类_Scala中
- 下一篇: Java枚举getDeclaringCl
