记录c++的第一个程序
#include<iostream> using std::cout,std::endl; int main() { cout<<"hello world"<<endl; return 0; }