#include <iostream> #include <cstdlib> #include <cstdio> #include <cstring> #include <string> using namespace std; const int ROW = 9; const int COLUMN = 8; const int LEN = 2; char msg[ROW][COLUMN][LEN] = { {-76, -45, -44, -25, -75, -56, -75, -67, -51, -19}, {-74, -52, -48, -59, -78, -69, -68, -5, -73, -75}, {-45, -5, -50, -54, -61, -90, -70, -50, -54, -62}, {-77, -52, -48, -14, -79, -32, -78, -69, -51, -22}, {-79, -66, -49, -21, -68, -5, -46, -69, -61, -26}, {-67, -24, -65, -38, -43, -46, -78, -69, -51, -22}, {-76, -13, -43, -55, -73, -14, -48, -40, -69, -77, -76, -13, -42, -66}, {-48, -95, -59, -82, -41, -45, -50, -76, -45, -48, -44, -71, -47, -44}, }; char end[] = {-76, -70, -67, -38, -54, -43, -75, -67, -73, -42, -63, -65, -41, -18, -42, -40, -75, -60, -46, -69, -73, -35, -74, -52, -48, -59, -64, -43, -93, -84, -45, -48, -43, -30, -61, -76, -46, -69, -72, -10, -64, -49, -58, -59, -93, -84, -72, -55, -54, -78, -61, -76, -74, -68, -72, -8, -63, -90 }; char cut_off_rule[] = {45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, -59, -44, -80, -41, -75, -60, -73, -42, -72, -18, -49, -33, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45 }; void print() { for(int i = 0; i < ROW - 1; ++ i) puts(msg[i][0]); puts(""), puts(""), puts(""), puts(cut_off_rule), puts(end); } int main (void) { print(); return 0; }
2011春节老婆赠:)