Mengurutkan angka secara menaik (ascending)

#include
#include

    main()
    {
            int sum[5],a,simpan,b,c;
            for(a=0;a<5;a++){
                printf("masukkan nilai ke %i: ",a+1);
                scanf("n%i",&sum[a]);}
        for(b=0;b<4;b++)
                {
            for(c=b+1;c<5;c++)
                (
            if(sum[c]
            {
            simpan=sum[b];
            sum[b]=sum[c];
            sum[c]=simpan;
        }}}
        printf("\nNilai setelah pengurutan adalah: ");
        for(a=0;a<5;a++)
            printf("%i",sum[a]);
        getch();
}
 
berikut hasil keluarannya.

Sign up here with your email address to receive updates from this blog in your inbox.

0 Response to "Mengurutkan angka secara menaik (ascending)"

Post a Comment