6장 9번6장 9번

Posted at 2013. 10. 30. 19:52 | Posted in 2학기/C언어

#include <stdio.h>


int main(void)


{

double x;


printf("x의 값을 입력하시오 : ");

scanf("%lf", &x);



if(x <= 0)

     printf("%lf", (x*x)*x - 9*x + 2);

else if(x > 0)

     printf("f(x)의 값은 %lf",  7*x + 2);


return 0;

}


'2학기 > C언어' 카테고리의 다른 글

4차 1번  (0) 2013.10.31
6장 11번  (0) 2013.10.30
6장 8번  (0) 2013.10.30
6장 7번  (0) 2013.10.30
6장 6번  (0) 2013.10.30
//