Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

C programming, loop bugs

  • 26-03-2014 11:17PM
    #1
    Registered Users, Registered Users 2 Posts: 6


    This is the code i'm having a problem with, the code is supposed to read in the numbers and print them out in ascending order, it compiles but the output is all wrong, any help would be great.


    int winning_nums [] = { 1, 3 , 5 , 7, 9, 11, 42} ;

    int nums[NUMBERS];
    int i, temp, j;
    int highest, lowest;

    printf("enter 6 numbers of your choice up to and including 42 \n");

    for(i=0;i<NUMBERS;i++)
    {
    scanf("%d", &nums);
    flushall();
    }

    for (i = 0; i < NUMBERS - 1; i++)
    {
    for (j = 0; j < NUMBERS-i-1; j++)
    {
    if ( nums[j] > nums[j+1] )
    {
    temp = nums[j];
    nums[j] = nums[j+1];
    nums[j+1] = temp;
    }
    }
    }

    printf("numbers you entered are %d \n");
    for(i=0;i<NUMBERS;i++)
    {
    printf("%d", &nums);
    flushall();
    }


Comments

Advertisement