002.注释

#include <iostream>
using namespace std;
//1.单行注释
    //
//2.多行注释
   /*
         main是程序的入口,
      每个程序都必须有一个
   
   */


int main()
{
    //11行在屏幕输出helloword
    cout << "helloword" << endl;   
    system("pause");  //按任意键继续
    return 0;
}

 

posted @ 2021-09-02 21:46  梦之心  阅读(38)  评论(0编辑  收藏  举报