Mathc initiation/Fichiers c : c04e

Un livre de Wikilivres.

Sommaire


Installer et compiler ces fichiers dans votre répertoire de travail.

c04e.c
/* ------------------------------ */
/*  Save as :   c04e.c            */
/* ------------------------------ */
#include      "x_a.h"
/* ------------------------------ */
int main(void)
{
double a=0;

 clrscrn();

 printf(" (a+=0.1) \n\n");

 while( (a+=0.1) < 1. )
                 
        printf(" a = %6.3f\n",a ); 

 stop();

 return 0;
}
/* ------------------------------ */
/* ------------------------------ */


Attention les parenthèses sont obligatoires.


Exemple de sortie écran :

 (a+=0.1) 

 a =  0.100
 a =  0.200
 a =  0.300
 a =  0.400
 a =  0.500
 a =  0.600
 a =  0.700
 a =  0.800
 a =  0.900
 a =  1.000

 Press return to continue.