返回列表 發帖

2010網際網路全國程式設計大賽

題目:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
Mai  買大誠 [E-Mail : mainword@dlinfo.tw, mainword@gmail.com] 手機 : 0911-116194
Sun Certified Java Programmer

DL Info 鼎侖資訊 [886-7-969-0998] 高雄市苓雅區光華一路206號6樓之2

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(){

  5.     int b , c;
  6.     int x = 0;
  7.     string a;
  8.     while(cin >> b >> c){
  9.     int d[b][c];
  10.    
  11.     for(int i = 0; i < b; i++){
  12.     cin >> a;
  13.     for(int j = 0; j < c; j++){
  14.     d[i][j] = ((int)a[j])-48;
  15.     }
  16.     }
  17.    
  18.     for(int i = 0; i < b; i++){
  19.     for(int j = 0; j < c; j++){
  20.     if(d[i][j] == 1){
  21.     if(i+1 == b || d[i+1][j] == 0){
  22.     x++;
  23.     }
  24.     if(j+1 == c || d[i][j+1] == 0){
  25.     x++;
  26.     }
  27.     if(i-1 < 0 || d[i-1][j] == 0){
  28.     x++;
  29.     }
  30.     if(j-1 < 0 || d[i][j-1] == 0){
  31.     x++;
  32.     }
  33.     }
  34.     }
  35.     }
  36.    
  37.     cout << x << endl;
  38.     x=0;
  39.    
  40.     }

  41. return 0;
  42. }
複製代碼
ㄏㄏ我好厲害喔
離離草原上
一歲一枯榮
野火燒不盡
春風吹又生

TOP

...
我是來去無蹤的..

                                ..士豪(Alen)黑輪

TOP

.
         
我是來去無蹤的..

                                ..士豪(Alen)黑輪

TOP

返回列表