#include "fleur.h"

int main(){
	int commande[7][7];
	int i;
	int j;
	for(i = 0; i < 7; i++){ //initialisation du tableau de commande
		for(j = 0; j < 7; j++){
			commande[i][j] = 0;
		}
	}
	saisirCommande(commande);
	afficherCommande(commande);
	enregistrerFacture(commande);
	//system("pause");
	return 0;
}
