学会的第一个代码“hello world”

sunxiaopengts / 2023-07-28 / 原文

#include<iostream>

using namespace std;

 

int main()

{

    cout <<"hello world"<< endl;

 

    system("pause");

 

    return 0;

}