2011年4月20日
摘要: 1: /* 2: problem: 路径问题 3: date: 4.20 4: */ 5: #include <iostream> 6: 7: using namespace std; 8: int w[105][105] , ans[105][105] ; 9: int main() 10: { 11: int f,v; 12: cin>>f>>v; 13: for(int i=0;i<f;i++) 14: { 15: for(int j=0;j<v;j++) 16: { 17: cin>>w[i][j]; 18: } 19: } 阅读全文
posted @ 2011-04-20 18:01 eth0 阅读(131) 评论(0) 推荐(0) 编辑