Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8469319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:11:41+00:00 2026-06-10T16:11:41+00:00

I have checked again and again for any problems in the code but can’t

  • 0

I have checked again and again for any problems in the code but can’t figure out why my bubble sorting program is not giving correct output. Can you please help me identify?

#include <iostream.h>
#include <conio.h>

 using namespace std;

 main()

{
  int number[10];
  int temp=0;
  int i=0;

  cout<<"Please enter any ten numbers to sort one by one: "<<"\n";

  for (i=0;i<10;i++)
  {
      cin>>number[i];
      }
  i=0;

  for (i=0;i<10;i++)
  {

      if(number[i]>number[i+1])

      {
      temp=number[i+1];
      number[i+1]=number[i];
      number[i]=temp;
                          }

      }
      i=0;
      cout<<"The sorted numbers are given below:"<<"\n";

      for (i=0;i<10;i++)
      {
        cout<<number[i]<<"\n";  
          }

          getch();
  }

Edit:
I have accepted what you all said that there must be an outer loop. But again I’m thinking on what I have written. I think the ONLY loop with the bubble condition should do the sorting. Here is what I’m thinking:

for (i=0;i<10;i++)
    if(number[i]>number[i+1])
    {
        temp=number[i+1];
        number[i+1]=number[i];
        number[i]=temp;

    }
} 

Now I explain what I am thinking what this loop “should” do. It will first compare number[0] with number[1]. If the condition is satisfied it will do what is in IF statement’s body. Then i will be incremented by 1(i++). Then on next iteration the values compared will be number[1] with number[2]. Then why it does not happen and the loop exits after only pass? In other words may be I’m trying to ask IF statement does not repeat itself in for loop? In my opinion it does. I’m very thankful for help and views, my question might be of small level but that is how I will progress. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T16:11:42+00:00Added an answer on June 10, 2026 at 4:11 pm
    • You run the bubble loop only once – you should run it until everything is sorted
    • Your bubble loop goes to ten, accessing number[i+1], which is an undefined behavior

    Here is how you can fix your main loop:

    bool again;
    do {
        again = false;
        for (i=0;i<9;i++)
        { //       ^-- Nine, not ten
            if(number[i]>number[i+1])
            {
                temp=number[i+1];
                number[i+1]=number[i];
                number[i]=temp;
                again = true;
            }
        }
    } while (again);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have checked this similar question, but the suggestions did not solve my problem:
I have checked many questions here but none has my answer. I appreciate if
I have checked out now a local working copy of a codebase that lives
I have checked the source codes of ASIHTTPRequest and could not make sure which
I have checked out files from my svn repository to a local project folder.
I have checked with Aweber customers service and they told me their internal function
I have checked a lot of questions on stackoverflow and I seem to have
I have checked few other posts and found some UIAnimation transitions that kind-of give
I have checked IE8, FF 3.5 , Opera 9 none of them have support
I have checked the assembler options of GNU assembler as and I didn't find

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.