poj1128
1 #include <iostream> 2 using namespace std; 3 #define SIZE 35 4 int map[SIZE][SIZE]={0}; 5 6 7 8 9 int main() 10 { 11 int h; 12 int w; 13 cin >>h; 14 cin >>w; 15 for(int i=0;i<h;i++) 16 { 17 for(int j=0;j<w;j++) 18 { 19 cin >>map[i][j]; 20 } 21 } 22

浙公网安备 33010602011771号