码迷,mamicode.com
首页 > 编程语言 > 详细

输出二维数组各元素的值

时间:2018-08-01 16:06:38      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:run   include   put   code   names   getch   this   class   str   

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 int main(int argc, char** argv) {
 6     int a[3][4]={1,2,3,2,5,6,7,6,9,6,55,32};
 7     int *p;
 8     for(p=a[0];p<a[0]+12;p++)
 9     cout <<*p<<" ";
10     cout <<endl;
11     return 0;
12 }

 

输出二维数组各元素的值

标签:run   include   put   code   names   getch   this   class   str   

原文地址:https://www.cnblogs.com/borter/p/9401497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!