Hey guys, I'm trying to write a program that will take a positive number with a fractional part and round it up two places.For example 32.4851 would round to 32.49, and 32.4431 would round to 32.44.
I really am slightly lost on this one and was hoping you guys could help me out a little bit. I have written some code and need feedback (won't compile using gcc) using stdio.h and math.h
#include <stdio.h>
#include <math.h>
double x;
int rounded_x;
int main (void)
{
printf ("Enter a number to be rounded \n\n\n\n\n");
scanf ("&lf", &x);
rounded_x=(int) (x+0.5);
return 0;
}
double scale (double x, int n)
{
double scale_factor;
scale_factor = pow(10, n);
return (x*scale_factor);
}