1-【快乐学习c++】hello world!

C++简单又有趣儿

欣赏hello word

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!" << endl;;
    system("pause");
    return 0;
}

输出结果

输出

猜你喜欢

转载自blog.csdn.net/magic_shuang/article/details/107499986