ABS operation instruction
Revision 0:f378b57ebf4d, committed 2013-06-06
- Comitter:
- Mahfoudh
- Date:
- Thu Jun 06 07:54:33 2013 +0000
- Commit message:
- Fonctionnement de l'instruction ABS
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Jun 06 07:54:33 2013 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+///////////////////////////////////////////////////////
+//Fonctionnement de l'instruction ABS valeur absolu //
+///////////////////////////////////////////////////////
+Serial pc(USBTX, USBRX);
+float x;
+float y;
+int main() {
+ x=-5 ;
+ y= abs (x) ;
+ pc.printf(" %f ",y);
+
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Jun 06 07:54:33 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/b3110cd2dd17 \ No newline at end of file