依次從鍵盤輸入20個無序整數,刪除數組重複元素並按從小到大排序

#include<stdio.h> //依次從鍵盤輸入20個無序整數,刪除數組重複元素並按從小到大排序 #include #include using namespace std; #define maxn 1000 int a[maxn]; bool cmp ( int a, int b ) { return a > b; }int main() { int i, n; printf ( 「請輸
相關文章
相關標籤/搜索