首页 > 代码库 > 字数统计

字数统计

#include "OJ.h"
#include <iostream>
using namespace std;

/*
功能:对输入的整型数组,输出数组元素中的最大值、最大值的个数、最小值和最小值的个数
    
输入:int * pInputInteger:整型数组指针
	 int * InputNum:数组元素个数
    
输出:int * pMaxValue:数组中最大值
  	 int * pMaxNum:数组中最大值的个数
	 int * pMinValue:数组中最小值
     int * pMinNum:数组中最小值的个数
     
返回:void
*/
void OutputMaxAndMin(int * pInputInteger, int InputNum, int * pMaxValue, int * pMaxNum, int * pMinValue, int * pMinNum)
{
	/*在这里实现功能*/
	if (InputNum <= 0 || pInputInteger == NULL)
	{
		*pMaxNum =0;
		*pMinNum = 0;
		*pMaxValue = http://www.mamicode.com/0;>

字数统计