冒泡排序法(C++實現)

#include using namespace std; #define N 6 //宏定義須要進行排序的數字個數 int main() { int temp; int list[N] = { 0 }; //定義數組用於存放無序的數列,數組裏的元素初始化爲0 cout << "請輸入N個無需的數據:" << endl; fo
相關文章
相關標籤/搜索