#include #include "ezwin.h" using namespace std ; float MyFunc1(const float x) { return 1*x ; } float MyFunc2(const float x) { return 2*x ; } float MyFunc3(const float x) { return 3*x ; } float MyFunc4(const float x) { return 4*x ; } float MyFunc5(const float x) { return 5*x ; } // Do not edit below this line ! float (*fTab[])(const float) = { MyFunc1, MyFunc2, MyFunc3, MyFunc4, MyFunc5, NULL } ;