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

  • Thread starter Thread starter Litcyb
  • Start date Start date
  • Tags Tags
    C++ Numbers
AI Thread Summary
The discussion focuses on calculating the three largest numbers from a user-input sequence in C++ using a while-loop. The initial code provided only calculates the maximum number, and users suggest storing three variables to track the largest, second largest, and third largest numbers. Key advice includes shifting the values of these variables each time a new maximum is found. Additionally, it is noted that the variable 'count' is unnecessary and that a do-while loop could be more appropriate for this task. The user successfully implements the suggestions and resolves their issue.
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)
{
cout<<"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;

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;

}
 
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 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 1 person
thank you~~~!
 
I got it and yes, there's no need why to have count there!
 
dont forget to thank borek via the thanks button
 

Similar threads

Replies
2
Views
2K
Replies
2
Views
3K
Replies
3
Views
1K
Replies
5
Views
2K
Replies
3
Views
1K
Replies
3
Views
2K
Back
Top