摘要: #include "stdafx.h" int main(){ const int a = 3; const int b = 3; int arr[a][b] = {0}; for (int i = 0; i <= a - 1; i++) { for (int j = 0; j <= b - 1; 阅读全文
posted @ 2017-11-25 20:52 苯苯! 阅读(419) 评论(0) 推荐(0) 编辑