// bubbleSort.cpp : Defines the entry point for the console application. // #include "stdafx.h" #define N 6; void bubble(int A[],int n) //冒泡排序 { int t; for(int i=0;i