标签:break like 符号 第一个 command 其他 帮助 symbol 多行注释
Let‘s take a quick break from programming and talk about comments.
Comments help programmers understand what exactly the computer program does.
Comments are also a short summary of your computer program.
让我们从编程中快速休息一下,来谈谈注释。
注释帮助程序员了解计算机程序的确切功能。
注释也是您的计算机程序的简短摘要。
There are two types of comments in programming:
It is as simple as it sounds. Single line comment is used to comment a single line and Multiline comment is used for multiple lines.
The computer ignore these lines while executing a program.
编程中有两种类型的注释:
这听起来很简单。单行注释用于注释单行,多行注释用于多行。计算机在执行程序时忽略这些行。
Single Line Comment
Let‘s see how to comment your command
It‘s very simple, to comment any command you just have to put ‘//" symbol at the very beginning of your command
Once you put‘//‘at the beginning, whatever command or text you write in that entire line will be ignored.
Example:
单行注释。
让我们看看如何注释您的命令行。
这非常简单,要注释任何命令,您只需在命令的开头加上‘//’符号。
一旦您在开头加上‘//’,您在整行中编写的任何命令或文本都将被忽略。
示例:
int main(){
// This line prints hi
printf("Hi");
}
What if you want the computer to ignore multiple commands written in multiple lines, like 12 commands?
It will be annoying to put ‘//‘ on each and every line, isn‘t it?
如果希望计算机忽略多行编写的多个命令,比如12行命令,该怎么办?
在每一行都加“//”会很烦人,不是吗?
So there is a better way to comment multiple commands.
It‘s done by using ‘/‘ at the beginning of your first command and using ‘/‘ at the end of your last command.
This is called multi line comment.
Whatever you write between ‘/‘ and ‘/‘ , be it a command or any text, will be ignored by the computer.
因此,有一种更好的方法来注释多个命令。
这可以通过在第一个命令的开头使用‘/’,在最后一个命令的末尾使用‘/’来完成。
这称为多行注释。
无论您在‘/’和‘/’之间写什么,无论是命令还是任何文本,都将被计算机忽略。
Example 示例:
printf (" A ");
// printf "B");
printf (" C ");
/* printf (" D ");
print f (" E ");
printf (" F ");
*/
Here, the printf command for ‘B‘ and printf command for ‘D‘ to ‘F" will be ignored by the computer, and you will not see these command‘s texts in the
The program ‘s output.
在这里,计算机将忽略‘B’的printf命令和‘D’到‘F’的printf命令,并且您不会在程序的输出中看到这些命令的文本内容。
03 Comments in C Programming C编程中的注释
标签:break like 符号 第一个 command 其他 帮助 symbol 多行注释
原文地址:https://www.cnblogs.com/xlfcjx/p/13369738.html