C++学习笔记 (1)—— 最简单的程序:helloword

#include <iostream>

using namespace std;

int main()

{ cout <<"Hello C++"<< endl;

system("pause");

return 0;

 

}

posted @ 2022-04-10 21:58  雾枫  阅读(83)  评论(0编辑  收藏  举报