⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex0715.cpp

📁 practice c++, it is from the book http://www.amazon.com/Schaums-Outline-Programming-John-Hubbard
💻 CPP
字号:
//  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -