| … | |
… | |
| 26 | "PGanswermacros.pl", |
26 | "PGanswermacros.pl", |
| 27 | "PGauxiliaryFunctions.pl", |
27 | "PGauxiliaryFunctions.pl", |
| 28 | "PGasu.pl" |
28 | "PGasu.pl" |
| 29 | ); |
29 | ); |
| 30 | |
30 | |
| 31 | TEXT(&beginproblem); |
31 | TEXT(beginproblem()); |
| 32 | |
32 | |
| 33 | # |
33 | # |
| 34 | # Now we do the randomization of variables, and other computations |
34 | # Now we do the randomization of variables, and other computations |
| 35 | # as needed for this problem. Sometimes we compute the answers here. |
35 | # as needed for this problem. Sometimes we compute the answers here. |
| 36 | # |
36 | # |
| … | |
… | |
| 72 | # Tell WeBWork how to test if answers are right. These should come in the |
72 | # Tell WeBWork how to test if answers are right. These should come in the |
| 73 | # same order as the answer blanks above. You tell WeBWork both the type of |
73 | # same order as the answer blanks above. You tell WeBWork both the type of |
| 74 | # "answer evaluator" to use, and the correct answer. |
74 | # "answer evaluator" to use, and the correct answer. |
| 75 | # |
75 | # |
| 76 | |
76 | |
| 77 | &ANS(std_num_cmp($ans1)); |
77 | ANS(num_cmp($ans1)); |
| 78 | &ANS(std_num_cmp($ans2)); |
78 | ANS(num_cmp($ans2)); |
| 79 | &ANS(std_num_cmp($ans3)); |
79 | ANS(num_cmp($ans3)); |
| 80 | |
80 | |
| 81 | ENDDOCUMENT(); # This should be the last executable line in the problem. |
81 | ENDDOCUMENT(); # This should be the last executable line in the problem. |
| 82 | |
82 | |