A voir également:
- Tableau de Tableaux en C++
- Tableau croisé dynamique - Guide
- Tableau ascii - Guide
- Tableau word - Guide
- Trier tableau excel - Guide
- Comment imprimer un tableau excel sur une seule page - Guide
1 réponse
LDMBatman
Messages postés
95
Date d'inscription
mardi 29 août 2006
Statut
Membre
Dernière intervention
10 avril 2014
39
15 juil. 2010 à 12:02
15 juil. 2010 à 12:02
struct Nom_Structure {
type_champ1 Nom_Champ1;
type_champ2 Nom_Champ2;
type_champ3 Nom_Champ3;
type_champ4 Nom_Champ4;
type_champ5 Nom_Champ5;
...
};
Dans ton cas :
struct megaTableau {
double nom = new double[Dim1];
double nom2 = new double[Dim2];
................
}
megaTableau[] unMegaTableau = new megaTableau[nb_lignes];
type_champ1 Nom_Champ1;
type_champ2 Nom_Champ2;
type_champ3 Nom_Champ3;
type_champ4 Nom_Champ4;
type_champ5 Nom_Champ5;
...
};
Dans ton cas :
struct megaTableau {
double nom = new double[Dim1];
double nom2 = new double[Dim2];
................
}
megaTableau[] unMegaTableau = new megaTableau[nb_lignes];
15 juil. 2010 à 12:07