19 lines
334 B
C
19 lines
334 B
C
#include <stdio.h>
|
|
#include "exos.h"
|
|
|
|
|
|
int sommeNombresPairs(int n);
|
|
|
|
void afficherTriangle(int n);
|
|
|
|
int valeurMax(int tab[], int n);
|
|
|
|
void additionMatrice(int matrice1[3][3], int matrice2[3][3], int resultat[3][3]);
|
|
|
|
void afficherMatrice(int matrice[3][3]);
|
|
|
|
void inverserChaine(char chaine[]);
|
|
|
|
int compterVoyelles(char chaine[]);
|
|
|