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

C programming, loop bugs

Options
  • 26-03-2014 11:17pm
    #1
    Registered Users 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