#include <iostream>
#include <stdio.h>
int main()
{
// 命名空间std
/*
cout or endl就包含在std这个命名空间中
*/
using namespace std;
// cout << "..." << endl;等于
// c语言中的printf("...\n");
cout << "Hello world!" << endl;
printf("hello world\n");
return 0;
}