一个4维数组是由3维数组组成的数组。
算法
Begin. Declare the variables. Declare the array elements. Take the no of elements as input. Take the elements as input. Print the elements stored in array.End.
登录后复制
这是一个4D数组的示例。
#includeusing namespace std;int main() { int a[2][2][3][2]; cout > a[i][j][k][l]; } } } } cout输出
Enter the elements of array:123456789101112131415161718192021222324array elements are stored as:a[0][0][0] [0]= 1a[0][0][0] [1]= 2a[0][0][1] [0]= 3a[0][0][1] [1]= 4a[0][0][2] [0]= 5a[0][0][2] [1]= 6a[0][1][0] [0]= 7a[0][1][0] [1]= 8a[0][1][1] [0]= 9a[0][1][1] [1]= 10a[0][1][2] [0]= 11a[0][1][2] [1]= 12a[1][0][0] [0]= 13a[1][0][0] [1]= 14a[1][0][1] [0]= 15a[1][0][1] [1]= 16a[1][0][2] [0]= 17a[1][0][2] [1]= 18a[1][1][0] [0]= 19a[1][1][0] [1]= 20a[1][1][1] [0]= 21a[1][1][1] [1]= 22a[1][1][2] [0]= 23a[1][1][2] [1]= 24登录后复制
以上就是在C/C++中,4维数组的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2584257.html