ex0715.cpp

来自「《C++编程习题与解答》书中所有例题与习题的源代码」· C++ 代码 · 共 36 行

CPP
36
字号
//  Programming with C++, Second Edition, by John R. Hubbard
//  Copyright McGraw-Hill, 2000
//  Example 7.15 on page 168
//  Using dynamic arrays

#include <iostream>
using namespace std;
void get(double*&,int&);
void print(double*,int);

int main()
{ double* a;    // a is simply an unallocated pointer
  int n;
  get(a,n);     // now a is an array of n doubles
  print(a,n);
  delete [] a;  // now a is simply an unallocated pointer again
  get(a,n);     // now a is an array of n doubles
  print(a,n);
}

void get(double*& a, int& n)
{ cout << "Enter number of items: ";  cin >> n;
  a = new double[n];
  cout << "Enter " << n << " items, one per line:\n";
  for (int i = 0; i < n; i++)
  { cout << "\t" << i+1 << ": ";
    cin >> a[i];
  }
}

void print(double* a, int n)
{ for (int i = 0; i < n; i++)
    cout << a[i] << " ";
  cout << endl;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?