欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Arrays Introduction

程序员文章站 2022-07-14 19:05:48
...

内容:

Arrays Introduction

说明:

数组的应用

示例代码:

// Arrays_Introduction.cpp: 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
using namespace std;

//by zhaocl
int main()
{
    int n;
    cin >> n;
    int *a = new int[n];     //not int a[n];

    for( int i = 0; i < n; i++ )
    {
        cin >> a[i];
    }

    for( int i = n; i > 0; i-- )
    {
        cout << a[i - 1] << " ";
    }

    cout << endl;

    delete[] a;	//not delete a
    system( "pause" );
    return 0;
}


知识点:

1、动态创建数组:int *a = new in[n];

2、数组的delete:new后注意delete,习惯很重要~