如何在C ++中打印多维数组的维
这是一个C++程序,用于打印给定数组的维数。
算法
Here template() function is used to find out the current size of array. Then recursively call it till the last dimension of array.
范例程式码
#include <iostream>
using namespace std;
template <typename t, size_t n>
void printDimensionsOfArray(const t (&a)[n]) {
cout << n;
}
template <typename t, size_t n, size_t m>
void printDimensionsOfArray(const t (&a)[n][m]) {
cout << "Dimensions of the Array is: "<<n << " x ";
printDimensionsOfArray(a[0]);
}
int main() {
int a[6][7];
printDimensionsOfArray(a);
return 0;
}输出结果
Dimensions of the Array is: 6 x 7
热门推荐
10 元宵发客户祝福语简短
11 老爸的祝福语简短独特
12 送女友鲜花祝福语简短
13 伴娘祝福语简短朋友的话
14 过年红包祝福语简短霸气
15 冬日问候祝福语大全简短
16 生日祝福语哥哥英文简短
17 春节新年祝福语简短幽默
18 新年祝福语简短又好听