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 get largest element of an float array in C++

2 Answers

0 votes
#include <iostream>

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

	float max = arr[0];
	for (int i = 1; i < size; ++i)
		if (arr[i] > max) max = arr[i];

	std::cout << "Largest = " << max << std::endl;

	return(0);
}



/*
run:

Largest = 9.7

*/

 



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 max = arr[0];
	for (int i = 1, size = arr.size(); i < size; ++i)
		if (arr[i] > max) max = arr[i];

	std::cout << "Largest = " << max << std::endl;

	return(0);
}



/*
run:

Largest = 9.7

*/

 



answered Jun 12, 2017 by avibootz

Related questions

1 answer 73 views
1 answer 94 views
1 answer 95 views
1 answer 117 views
1 answer 117 views
1 answer 94 views
...