Mathc initiation/Fichiers h : x 16f

Un livre de Wikilivres.


Sommaire


Installer ce fichier dans votre répertoire de travail.

zpf.h
utilitaire
/* ---------------------------------- */
/*  Save as :   zpf.h                 */
/* ---------------------------------- */
void p_f(
fraction f)
{
       if(          f.n==0) printf("0");
  else if(f.d==1 && f.n==1) printf("1");
  else if(f.d==1 && f.n> 0) printf("%.0f",f.n);
  else if(f.d==1 && f.n< 0) printf("(%.0f)",f.n);
  else                      printf("(%.0f/%.0f)",f.n,f.d);
}
/* ---------------------------------- */
/* ---------------------------------- */


Ce fichier contient la fonction pour imprimer à l'écran les fractions.