10、执行下列语句后,输出的结果是
#include<iostream>
using namespace std;
int main(){
int j;
int m[3][2]={10,20,30,40,50,60};
for(j=0;j<2;j++)
cout<<m[2-j][j]<<' ';
return 0;}
10 30
20 40
50 40
60 40
发表评论