Mathc initiation/Fichiers c : do2i


Sommaire

Installer et compiler ce fichier dans votre répertoire de travail.

sym_z.c
/* ------------------------------------ */
/*  Save as :   sym_z.c                 */
/* ------------------------------------ */
#include "w_a.h"
/* ------------------------------------ */
int main(void)
{
nb_Z a;

  clrscrn();

  a = i_Z( 2,  3);

 printf(" sym(");
 p_Z(a,S3,P0,S3,P0);
 printf(") = ");
 
 p_Z(sym_Z(a),S3,P0,S3,P0);
 printf("\n\n\n");

 stop();

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


Nous calculons ici le symétrique d'un nombre complexe.


Exemple de sortie écran :

 sym( +2 +3i ) =  -2 -3i 


 Press return to continue.