GoldenBall | Code :
- #include <stdlib.h>
- #include <stdio.h>
- int main()
- {
- int note, note2=0, c=0;
- float moy=0;
- printf("Entrez une note : " );
- scanf("%d", ¬e);
- if(note<0)
- {
- printf("Pas de note \n" );
- system("pause" );
- }
- else
- {
- do
- {
- note=note+note2;
- c=c+1;
- printf("Entrez une note : " );
- scanf("%d", ¬e2);
- }
- while(note2>0);
- moy=note/c;
- printf("La somme est %d \n", note);
- printf("On divise %d par %d ce qui donne %d \n", note,c, moy); // ce qui donne 0...
- system("pause" );
- }
- }
|
|