001.第一个C++程序hello word
时间:2021-09-04 04:10:49
收藏:0
阅读:28
#include <iostream> using namespace std; int main() { cout<<"hello word"<<endl; system("pause"); return 0; }
原文:https://www.cnblogs.com/ceovs/p/15220937.html
评论(0)