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

📄 pex10_2.cpp

📁 数据结构C++代码,经典代码,受益多多,希望大家多多支持
💻 CPP
字号:
#include <iostream.h>
#pragma hdrstop

#include "wex10_7.h"

void main(void)
{
	float a[50];
	
	// initialize to to have values 1,2,3,...,50
	for(int i=0;i < 50;i++)
		a[i] = i+1;
		
	// use avg to compute the average (51/2 = 25.5)
	cout << "The average of the values in the array is "
		 << avg(a,50) << endl;
}

/*
<Run>

The average of the values in the array is 25.5
*/

⌨️ 快捷键说明

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