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

c++ primer 5th 练习3.43

时间:2014-11-28 22:44:17      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   for   div   log   

#include <iostream>
using namespace std;
 
int main()
{
     int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12};
 
 /*  for(int (&i)[4]:a)        
         for(int (&j):i)
             cout<<j<<endl;
 */
 
 /*  for(int i=0;i<3;i++)
         for(int j=0;j<4;j++)
             cout<<a[i][j]<<endl;
 */
 
 /*  for(int (*p)[4]=a;p<a+3;p++)
         for(int *q=*p;q<*p+4;q++)
             cout<<*q<<endl;
 */
 
 /*  for(auto &i:a)
         for(auto &j:i)
             cout<<j<<endl;
 */
 
     for(auto p=a;p<a+3;p++)
         for(auto q=*p;q<*p+4;q++)
             cout<<*q<<endl;
     return 0;
 
 }

 

c++ primer 5th 练习3.43

标签:style   blog   io   color   os   sp   for   div   log   

原文地址:http://www.cnblogs.com/amdb/p/4129512.html

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