C++学习笔记-如何快速遍历输出数组

	int temp[10] = {1,2,3,4,5,6,7,8,9,10};
	for (auto i : temp)
		cout<<i<<" ";

猜你喜欢

转载自blog.csdn.net/qq_37525888/article/details/129722597
今日推荐