标签:col char clu return div pre ogr name iostream
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,7,4,32,34,55,66,22,43,12}; 7 int (*p)[4],i,j; 8 cin >>i>>j; 9 p=a; 10 cout<<*(*(p+i)+j)<<endl; 11 return 0; 12 }
标签:col char clu return div pre ogr name iostream
原文地址:https://www.cnblogs.com/borter/p/9401504.html