Skip to content
Snippets Groups Projects
Commit cd5931ab authored by Choi Jinyoung's avatar Choi Jinyoung
Browse files

modify test.c

parent e5e2b8b4
No related branches found
No related tags found
1 merge request!3Function2
...@@ -26,7 +26,7 @@ int main() { ...@@ -26,7 +26,7 @@ int main() {
double a2=100.0; double a2=100.0;
fx_s2308 f_a2=DOUBLE_TO_FX(a2); fx_s2308 f_a2=DOUBLE_TO_FX(a2);
fx_s2308 sqrt_a2=fx_s2308_double_sqrt(f_a2); fx_s2308 sqrt_a2=fx_s2308_double_sqrt(f_a2);
printf("sqrt(%lf)의 fx_2308 값: %lf, Double로 변환: %lf\n\n",a2,f_a2,FX_TO_DOUBLE(sqrt_a2)); printf("sqrt(%lf)의 fx_2308 값: %lf, Double로 변환: %lf\n",a2,f_a2,FX_TO_DOUBLE(sqrt_a2));
printf("\n===Function: Power===\n"); printf("\n===Function: Power===\n");
double a3=64.0; double a3=64.0;
fx_s2308 f_a3=DOUBLE_TO_FX(a3); fx_s2308 f_a3=DOUBLE_TO_FX(a3);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment