我正在编写一些应该使用用户选择的数学函数(来自 math.h)的代码。我有类似的东西
printf("If you want to use sin, press 's'\n"
"If you want to use cosh, press 'c'\n");
do choice = getchar();
while (choice != 's' && choice != 'c');
如何存储用户选择的功能?我想将它放在某个变量中fun
,然后通过编写在计算中使用它fun(x)
,但不知道如何做到这一点。请帮忙!