摘要: #include<iostream>#include<algorithm>using namespace std;int main(){ int i=0; int a[5]={0,1,2,3,4}; sort(a,a+5); for(i;i<5;i++){ cout<<a[i]; }} 其中sort 阅读全文
posted @ 2018-12-04 17:00 vincand 阅读(107) 评论(0) 推荐(0)