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         

 

posted @ 2017-01-24 14:56  jintg  阅读(66)  评论(0)    收藏  举报