摘要:
/* ID:tianlin2 PROG:packrec LANG:C++*/ #include <iostream>#include <fstream>#define INF 32768using namespace std;class rect{public: int x; int y; int area; rect() { x=0; y=0; area=0; } rect operator=(rect a) { x=a.x; y=a.y; area=a.area; return *this; }};void bubble(rect a[],int n){ int b 阅读全文
posted @ 2010-08-06 11:40
CMuYu
阅读(154)
评论(0)
推荐(0)

浙公网安备 33010602011771号