一些c++程序題

// 冒泡排序.cpp : 定義控制檯應用程序的入口點。 //比較相鄰兩個元素,若第一個比第二個大,就交換兩個元素 #include "stdafx.h" #include<iostream> using namespace std; int main() {     const int N = 7;     int bubble[N];     cout << "輸入數字:";     for
相關文章
相關標籤/搜索