Mahfoudh REBBAH / Mbed 2 deprecated ABS---confermation

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 ///////////////////////////////////////////////////////
00003 //Fonctionnement de l'instruction ABS valeur absolu //
00004 ///////////////////////////////////////////////////////
00005 Serial pc(USBTX, USBRX);
00006 float x;
00007 float y;
00008 int main() {
00009     x=-5 ;
00010     y= abs (x) ;
00011     pc.printf("  %f ",y);
00012  
00013 }