#include<iostream>  //头文件,也可以称为库文件,它包含我们所需要的函数

using namespace std; //命名空间   作用:下面的cout可以直接写,没有的话需这样写std::cout

int main() {

         cout << "Hello world" << endl;

         system("pause");

         return 0;

}

 

posted on 2022-03-26 16:02  逻辑思维导图  阅读(41)  评论(0)    收藏  举报