Me ayudarían se entrega hoy a las 1:00pm pm es de Dev C++
Adjuntos:
flavio62:
error: too many initializers for ‘double [2]’
Respuestas a la pregunta
Contestado por
0
Respuesta:
Así me funciona en codeblocks
Explicación:
#include <cstdlib>
#include <iostream>
#include <math.h>
using namespace std;
int main(int argc, char** argv)
{
double arreglo[4][4]={{1,2,3,4},{5,6,7,8}};
for(int r=0; r<=3; r++){
for (int c=0; c<2; c++)
{
arreglo[r][c]=1*c;
cout<<arreglo[r][c];
}
}
}
Adjuntos:
Otras preguntas
Historia,
hace 1 mes
Psicología,
hace 1 mes
Matemáticas,
hace 2 meses
Historia,
hace 8 meses
Castellano,
hace 8 meses