C++数组最大整数

#include iostreamusing namespace std;const int MAX = 3;int main () {intvar[MAX] = {10, 100, 200};

编程学习网为您整理以下代码实例,主要实现:C++数组最大整数,希望可以帮到各位朋友。

#include <iostream>

using namespace std;
const int MAX = 3;

int main () {
   int  var[MAX] = {10, 100, 200};
   int *ptr[MAX];

   for (int i = 0; i < MAX; i++) {
      ptr[i] = &var[i]; // assign the address of integer.
   }

   for (int i = 0; i < MAX; i++) {
      cout << "Value of var[" << i << "] = ";
      cout << *ptr[i] << endl;
   }

   return 0;
}

本文标题为:C++数组最大整数

基础教程推荐