Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,039 questions

52,004 answers

573 users

How to calculate the average value of float array in C++

2 Answers

0 votes
#include <iostream>

int main(void)
{
	float arr[5] = { 3.14, 2.2, 9.7, 1.17, 5.55 }, sum = 0.0;
	int size = (sizeof(arr) / sizeof(*arr));

	for (int i = 0; i < size; i++)
		sum += arr[i];

	float average = sum / size;
	std::cout << "Average = " << average << std::endl;

	return(0);
}



/*
run:

Average = 4.352

*/

 



answered Jun 12, 2017 by avibootz
edited Jun 12, 2017 by avibootz
0 votes
#include <iostream>
#include <array>

int main(void)
{
	std::array<float, 5> arr = { 3.14, 2.2, 9.7, 1.17, 5.55 };
	float sum = 0.0;

	for (int i = 0; i < arr.size(); i++)
		sum += arr[i];

	float average = sum / arr.size();
	std::cout << "Average = " << average << std::endl;

	return(0);
}



/*
run:

Average = 4.352

*/

 



answered Jun 12, 2017 by avibootz

Related questions

1 answer 145 views
1 answer 131 views
1 answer 161 views
3 answers 202 views
202 views asked Jun 12, 2017 by avibootz
1 answer 131 views
131 views asked Feb 10, 2016 by avibootz
...