Calculate 3 Largest Numbers in C++ with a while-loop

  • Context: Comp Sci 
  • Thread starter Thread starter Litcyb
  • Start date Start date
  • Tags Tags
    C++ Numbers
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 3K views
Litcyb
Messages
34
Reaction score
0
C++-- while-loop

Homework Statement



calculate the 3 largest number of a sequence

Homework Equations


you ask the user to input a sequence of numbers, and enter the value 0 to stop entering numbers.
c++

The Attempt at a Solution


i managed to calculate the the maximum of the series of numbers, i don't know how i can calculate the 2nd max and the 3rd max number. please help.

cin>>value;
while(count > 0)
{
cin>> input;

if (input==0)
{
count<<"sequence ended"<<endl;
break;
}
else if(input > value)
{
input= value;
}

count++;

this will generate the Maximum, how can i calculate the second max and 3rd max.
 
Physics news on Phys.org
You need to store at least three values in variables and - each time you find a new maximum - "shift" them, storing the previous second largest as a third largest, and previous largest as the second largest.

However, at the moment your code is not doing anything - it doesn't compile, it doesn't run, it even doesn't look like a code. You don't declare your variables, you don't initialize them, and in some cases you don't need them. It makes it very hard to discuss what you wrote, as it can be wrong and can be right, depending on the pieces we don't see.
 
I did write the whole code and declared all my variables. i just didnt want to post it fully here for some reason or the other. I apologize. here is the whole code. #include<iostream>
using namespace std;
int main()

{
int count;
int num;
int x;


count=1;

count<<"please enter your sequence of numbers "<<endl;
cin>>num;
while(count > 0)
{
cin>> x;

if(x==0)
{
count<<"sequence ended"<<endl;
break;
}
else if(x > num)
{
num = x;
}

count++;

}

count << endl;

count<<"The maximum number of this sequence is "<<num<< endl;

return 0;

}
 
Put your code in [noparse]
Code:
[/noparse] tags for better formatting:

Code:
#include<iostream>
using namespace std;
int main()

{
    int count;
    int num;
    int x;
  
    
    count=1;
    
    cout<<"please enter your sequence of numbers "<<endl;
    cin>>num;
    while(count > 0)
    {
        cin>> x;
       
        if(x==0)
        {
            cout<<"sequence ended"<<endl;
            break;
        }
        else if(x > num)
        {
        num = x;
        }
       
   count++;
        
    }
       
    cout << endl;
    
cout<<"The maximum number of this sequence is "<<num<< endl;

    return 0;
   
}

Do you plan to use count for anything? If not, it is superfluous. Why don't you use do{}while() loop?

You have one variable for storing the maximum value. I already suggested one of the ways of dealing with the problem - declare and use three variables, like max1, max2 and max3 (or, to follow your 'naming scheme', num1, num2 and num3).
 
  • Like
Likes   Reactions: 1 person
it seems you're real close. Look at the line num=x

At this point x is the largest number and num is the second largest so can you save num before you change it?

Having figured that out it shouldn't be a problem to extend it for three numbers.
 
  • Like
Likes   Reactions: 1 person
I got it and yes, there's no need why to have count there!