jueves, 26 de septiembre de 2013

matrices

//uso de matrices
#include<iostream>
using namespace std;
int main(){
  int A[][2]={3, 5, 6, 2, 0, 1};
  int B[4];
  B[0]=2;  B[1]= 3;
  B[2]=4;  B[3]= 1; 
  for(int i=0;i<3;i++){
    for(int j=0;j<2;j++)
     cout<<A[i][j]<<" ";
    cout<<endl;
  }
  cin.get();   
}

No hay comentarios:

Publicar un comentario