#include <iostream>

using namespace std;

int main()
{
	int arr[2][2][2] = {0};
	for(auto&& i:arr)
		for(auto&& j:i)
			for(auto&& k:j)
				cout << k << endl;
	return 0;
}

相关文章:

  • 2022-02-08
  • 2021-12-28
  • 2021-10-31
  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
  • 2021-05-18
  • 2022-02-04
猜你喜欢
  • 2021-12-18
  • 2021-11-03
  • 2021-10-09
  • 2022-12-23
  • 2021-11-10
相关资源
相似解决方案