Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

새싹교실/2017/내무반/한윤진/BubbleSort

From ZeroWiki
Revision as of 14:52, 18 May 2017 by imported>h94418
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
#include <stdio.h>

void bubbleSort(int A[], int N);

int main()
{
	int i;
	int a[5];
        for(int j=0;j<5;j++){        
                scanf("%d",&a[j]);
        }
	bubbleSort(a,5);
	for (i=0;i<5;i++) 
		printf(“%d\n”,a[i]);

	return 0;
}
void bubbleSort(int A[], int N)
{
	int temp,i, j;
	for (i=N-1;i>=1;i--) 
		for (j=1;j<=i;j++) 
			if (A[j-1]>A[j]) {
				temp=A[j-1];
				A[j-1]=A[j];
				A[j]=temp;
			}	
}