Hallo - Array sortiert:



  • Falls das noch jemand brauchen kann: 🙂

    [code]#include <iostream.h>
    #include <stdio.h>
    #include <conio.h>

    const int SIZE = 5;

    void sort(int* array,int size)
    {

    int x;
    int y;
    int temp;
    for (x=0; x< size;x++)
    {
    for(y = x+1; y<size; y++)
    {


    {
    temp = array[y];
    array[y] = array[x];

    }

    }

    }

    }
    //---------------------------------------------------------------------------
    void max()
    {
    int array[5];
    int z;

    for(z=0; z<5;z++)
    {
    cout << "\n\nGeben Sie bitte Ihre Zahlen ein:";
    cin >> array[z];

    }
    for(z=0; z<5;z++)
    {

    cout << "\nIhre Zahlen:" << array[z];
    }

    sort(array,SIZE);
    for(z = 0; z < SIZE;z++)
    {
    cout << "\n\nIhre Zahlen sortiert:" << array[z];

    }

    cout << "\n\nDie groesste Zahl:" << array[4] <<"\n";
    }

    void main()
    {
    cout << "Hallo Hurra\n";
    max();

    getch();
    }



  • EDIT: Hat sich erledigt. Sorry!

    Code-Hacker


Anmelden zum Antworten