Digg StumbleUpon LinkedIn YouTube Flickr Facebook Twitter RSS Reset

C/C++: Utilisation de ‘double fdim ( double x , double y )()’ pour retourner zéro si x<=y autrement, retourne x-y


Download

 
  #include
<math.h>
  #include <stdio.h>
 
  int main(void)
  {
    printf("%1.1f", fdimf (1.0, -1.0));
 
    return 0;
  }
----------------------------------------------------------------------------

No comments yet.

Leave a Comment