C++ program to find the largest and second largest number present in an array – Genuine Coder

C++ program to find the largest and second largest number present in an array

C++ program to find the largest and second-largest numbers present in an array along with their location index on the array. This program first find the largest number by going through all the numbers in the array. It stores the index of the largest number on the variable pos1 and largest number is the largest variable. A second for loop is applied, which also check for the largest number. When it hits on the largest found by the first loop, it is bypassed using a continue statement and hence will get the second-largest number.

#include <iostream>
#include <conio.h>
using namespace std;

void main()
{
	int a[10], i, largest = 0, second_largest = 0, pos1, pos2;
	int n;
	cout << "Enter Number of elements :";
	cin >> n;
	for (i = 0; i < n; ++i)
	{
		cout << "n Enter " << (i + 1) << "th Element :";
		cin >> a[i];
	}
	//Finding Largest
	for (i = 0; i < 10; ++i)
	{
		if (a[i] > largest)
		{
			largest = a[i];
			pos1 = i;
		}
	}
	//finding second largset
	for (i = 0; i < 10; ++i)
	{
		if (a[i] > second_largest)
		{
			if (a[i] == largest)
				continue;	//Ignoring largest in order to get second largest
			second_largest = a[i];
			pos2 = i;
		}
	}
	cout << "nn Largest Number :" << largest << " at position " << (pos1 + 1);
	cout << "nn Second Largest Number :" << second_largest << " at position " << (pos2 + 1);

	getch();
	return;
}

*Compiled using Visual Studio

Output

Comments

52 responses to “C++ program to find the largest and second largest number present in an array”

  1. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  2. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  3. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  4. … [Trackback]

    […] Read More Information here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  5. … [Trackback]

    […] Info on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  6. … [Trackback]

    […] Information to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  7. … [Trackback]

    […] Read More Information here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  8. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  9. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  10. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  11. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  12. … [Trackback]

    […] Find More on to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  13. … [Trackback]

    […] Here you will find 52940 more Information on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  14. … [Trackback]

    […] Info on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  15. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  16. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  17. … [Trackback]

    […] Find More Information here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  18. … [Trackback]

    […] Here you can find 6780 more Information to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  19. … [Trackback]

    […] Information on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  20. … [Trackback]

    […] Info on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  21. … [Trackback]

    […] Here you will find 5746 more Information to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  22. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  23. … [Trackback]

    […] Read More on to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  24. … [Trackback]

    […] There you can find 47640 more Information to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  25. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  26. … [Trackback]

    […] Information on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  27. … [Trackback]

    […] There you will find 80703 additional Information on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  28. … [Trackback]

    […] Info to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  29. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  30. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  31. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  32. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  33. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  34. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  35. … [Trackback]

    […] There you will find 88839 more Info to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  36. … [Trackback]

    […] There you can find 32241 additional Info to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  37. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  38. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  39. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/cpp-program-find-largest-and-second-largest-number-array-html/ […]

  40. acheter kamagra bonne prix pharmacie en ligne

    générique kamagra capsules comparaison de prix

  41. free enclomiphene prices

    cheapest buy enclomiphene generic low price

  42. buy androxal generic london

    ordering androxal low price

  43. order dutasteride spain over the counter

    ordering dutasteride generic europe

  44. purchase flexeril cyclobenzaprine cheap canada pharmacy

    order flexeril cyclobenzaprine cheap online pharmacy

  45. how to buy fildena usa drugstore

    cheapest buy fildena generic switzerland

  46. how to buy gabapentin purchase online canada

    cheap gabapentin purchase tablets

  47. cheapest buy itraconazole cheap to buy online

    ordering itraconazole cheap uk

  48. online order staxyn canada mail order

    buying staxyn lowest cost pharmacy

  49. cheap avodart uk online pharmacy

    how to order avodart generic form

  50. how to buy rifaximin generic available in united states

    how to buy rifaximin australia generic online

  51. buying xifaxan no prescription needed

    how to order xifaxan cheap buy online no prescription

  52. kamagra v mexiku bez lテゥkaナ冱kテゥho pナ册dpisu

    kamagra sobotnテュ doruト稿nテュ

Leave a Reply Cancel reply

Exit mobile version