Bonsoir,
On me donne ceci :
Code C : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 struct etudiant { char code[5]; char prenom[20];; char nom[20]; char departement[20]; } struct note { char code[5]; float Math; float Francais; float ProgFond; }
Comment puis-je écrire un programme pour :
1) saisir des nouveaux étudiants
2) afficher les étudiants
3) rechercher et supprimer un étudiant
4) Saisir des notes
- Modifier une note
- Calculer les moyennes d'un étudiant
- Affichage de toutes les moyennes .
Merci pour votre aide.
Partager