华为-蛇形矩阵
题目链接
3 6 102 5 94 87
题解:
#include using namespace std;const int MAX = 100;int main(){ int n; int buf[MAX][MAX]; while (cin >> n){ int col_add = 1; buf[0][0] = 1; for (int i = 0; i < n; i++){ int row_add = i + 2; for (int j = 0; j < n - i; j++){ if (j == 0 && i > 0){ buf[i][j] = col_add + buf[i - 1][j]; col_add++; } else if(j > 0){ buf[i][j] = buf[i][j - 1] + row_add; row_add++; } cout << buf[i][j] << " "; } cout << endl; } } return 0;}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~