pr0609.cpp

来自「practice c++, it is from the book http:/」· C++ 代码 · 共 27 行

CPP
27
字号
//  Programming with C++, Second Edition, by John R. Hubbard
//  Copyright McGraw-Hill, 2000
//  Problem 6.9 on page 143
//  Processing a three-dimensional array

#include <cassert>   // defines the assert() function
#include <iostream>  // defines the cin and cout objects
using namespace std;

int minIndex(float[],int);

int main()
{ // tests the minIndex() function:
  float a[] = { 6.6, 9.9, 3.3, 7.7, 3.3, 5.5, 8.8, 1.1, 3.3 };
  int k = minIndex(a,6);
  cout << "minIndex(a,6) = " << k << endl;
  cout << "a[" << k << "] = " << a[k] << endl;
}

int minIndex(float a[], int n)
{ assert(n >= 0);
  int j=0;
  for (int i=1; i<n; i++)
    if (a[i] < a[j]) j = i;
  return j;
}

⌨️ 快捷键说明

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