http://www.oracle.com/technetwork/database/express-edition/downloads/102xewinsoft-090667.html Read More
posted @ 2011-06-12 22:05 庚武 Views(292) Comments(0) Diggs(0) Edit
#include <iostream>#include <iomanip>#include <cstdlib>using namespace std;void bubbleSort(int [],const int, bool(*)(int,int));void swap(int * const,int * const);bool ascending(int ,int);bool descending(int,int);void print_arr(int [],int);int main(){ int arr[]={3,42,1,100,689,2,24, Read More
posted @ 2011-06-12 17:17 庚武 Views(256) Comments(0) Diggs(0) Edit