标签:单行 open stream nbsp span 函数 ret class display
注释分为两类:单行注释和界定符对注释
单行注释://
1 #include <iostream> 2 //简单函数,求和 3 int main() 4 { 5 std::cout<<"**"; 6 system("pause"); 7 return 0; 8 }
界定符对注释:以/*开头,*/结尾。且中间不嫩嵌套界定符对注释。
1 #include <iostream> 2 int main() 3 /*简单函数 4 *求和 5 */ 6 { 7 std::cout<<"**" 8 system("pause"); 9 retuen 0; 10 }
标签:单行 open stream nbsp span 函数 ret class display
原文地址:https://www.cnblogs.com/archerzon/p/9516984.html