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
Click For Summary
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 by the user successfully identifies the maximum number but lacks the logic to track the second and third largest numbers. Participants in the discussion recommend using three variables (e.g., max1, max2, max3) to store the largest values and suggest shifting these values when a new maximum is found. The final solution involves modifying the code to include these variables and ensuring proper initialization and output.

PREREQUISITES
  • Understanding of C++ syntax and structure
  • Familiarity with control flow statements, particularly while-loops
  • Basic knowledge of variable declaration and initialization in C++
  • Experience with user input handling in C++
NEXT STEPS
  • Implement a solution using three variables to track the top three maximum numbers in a sequence
  • Explore the use of do-while loops for user input in C++
  • Learn about sorting algorithms to find the largest numbers in an array
  • Investigate error handling for user input in C++ to improve robustness
USEFUL FOR

C++ programmers, students learning algorithms, and anyone interested in improving their skills in handling user input and data processing in C++.

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
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 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 24 ·
Replies
24
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K