C++ 1.注释—单行注释与多行注释

#include 
#include 
using namespace std;
//1. 单行注释     //
//2  多行注释    /*多行注释*/  


//main是一个程序的入口,每个程序都必须有一个,有且只有一个

int main()
{
    cout << "hello word" << endl;    //为打印的内容

    system("pause");

    return 0; 

}

你可能感兴趣的:(c++)