当前位置:   article > 正文

C++获取vector二维数组的行数和列数_c++ vector返回行数和列数

c++ vector返回行数和列数

C++获取vector二维数组的行数和列数
代码:

#include <iostream>
#include <string>
#include <vector>
using namespace std;

int main(){
	//创建4*5二维数组,并将数组元素的值都设为1
	vector<vector<int>> dp(4, vector<int>(5, 1));
	//打印二维数组
	for (int i = 0; i < 4; i++) {
		for (int j = 0; j < 5; j++)
			cout << dp[i][j] << " ";
		cout << endl;
	}
	cout << endl;

	int m = dp.size();//行数
	int n = dp[0].size();//列数
	cout << "m = " << m << endl;
	cout << "n = " << n << endl;
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

结果:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/390856
推荐阅读
相关标签
  

闽ICP备14008679号