Abs

#include "stdio.h"
int myabs(double x){
   int y=-1,z;
   if(x<0)
   z=y*x;
   else
   z=x;
   return z;
}
int main (void)
{
    double a;
    scanf("%lf",&a);
    printf("%d",myabs(a));
    system("pause");
    return 0;
}

0 comments:

Post a Comment