C++基础语法复习

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_17677907/article/details/88086247

helloworld

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello, world!" << endl;
    return 0;
}

Vector

猜你喜欢

转载自blog.csdn.net/qq_17677907/article/details/88086247
今日推荐