摘要: 程序功能描述: 把每有个字符看成是二进制位数据,程序提供给这些字符组成的图像加边框操作、横向合并操作、纵向合并操作。 1 #include <iostream> 2 using namespace std; 3 class Picture; 4 ostream& operator<<(ostream&,const Picture&); 5 Picture frame(const Picture&); 6 Picture operator&(const Picture&,const Picture&); 7 Pict 阅读全文
posted @ 2012-02-13 20:08 lazycoding 阅读(722) 评论(0) 推荐(0)