c語言實現找最大值最小值位置查找

找最大值最小值位置
從鍵盤任意輸入10個整數,計算並輸出最大值和最小值及其它們在數組中的下標位置。

程序運行結果示例1:

Input 10 numbers:1 2 3 4 5 6 7 8 9 10↙

max=10,pos=9

min=1,pos=0

程序運行結果示例2:

Input 10 numbers:2 4 5 6 8 10 1 3 5 7 9↙

max=10,pos=5

min=1,pos=6

程序:

#include <stdio.h>
int FindMax(int a[], int n, int *pMaxPos);
int FindMin(int a[], int n, int *pMinPos);
int main()
{
  int a[10], maxValue, maxPos, minValue, minPos, i;
  printf("Input 10 numbers:");
  for (i=0; i<10; i++)
  {
    scanf("%d", &a[i]);       // 輸入10個數
  }
 
  maxValue = FindMax(a, 10, &maxPos); // 找最大值及其所在下標位置
  minValue = FindMin(a, 10, &minPos); // 找最小值及其所在下標位置
  printf("max=%d,pos=%d\n", maxValue, maxPos);
  printf("min=%d,pos=%d\n", minValue, minPos);
  return 0;
}
 
//函數功能:求有n個元素的整型數組a中的最大值及其所在下標位置,函數返回最大值
int FindMax(int a[], int n, int *pMaxPos)
{
  int i, max;
  max = a[0];       //假設a[0]為最大值
  *pMaxPos = 0;      //假設最大值在數組中的下標位置為0
   
  for (i=1; i<n; i++)
  {
    if (a[i] > max)
    {
      max = a[i];
      *pMaxPos = i;   //pMaxPos指向最大值數組元素的下標位置
    }
  }
  return max ;
}
 
//函數功能:求有n個元素的整型數組a中的最小值及其所在下標位置,函數返回最小值
int FindMin(int a[], int n, int *pMinPos)
{
  int i, min;
  min = a[0];       //假設a[0]為最小
  *pMinPos = 0;      //假設最小值在數組中的下標位置為0
   
  for (i=1; i<10; i++)
  {
    if (a[i] < min)
    {
      min = a[i];
      *pMinPos = i; //pMinPos指向最小值數組元素的下標位置
    }
  }
  return min ;
}

到此這篇關於c語言實現找最大值最小值位置查找的文章就介紹到這瞭,更多相關c語言 最大值最小值內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: