文章目录
- AcWing 755. 平方矩阵 III
- AC代码
AcWing 755. 平方矩阵 III
本题链接:AcWing 755. 平方矩阵 III
本博客给出本题截图:
AC代码
代码:
#include <iostream> #include <cstdio> using namespace std; int main() { int n; while (cin >> n, n) { for (int i = 0; i < n; i ++ ) { for (int j = 0; j < n; j ++ ) { int v = 1; for (int k = 0; k < i + j; k ++ ) v *= 2; cout << v << ' '; } cout << endl; } cout << endl; } return 0; }