Sindbad~EG File Manager
/* Original date 8.2.24 */
/* Prompts to be used in EnterProblem.php for dialog boxes to enter a problem */
#include "english.h"
#include "probtype.h"
#include "enterprompts.h"
#define MAXENTERPROMPTS 100
// set_statusline(1539);
/* Select or enter the problem to be solved. */
static enterprompt GraphEnterPrompts[100] =
{ { COMPARE_GRAPHS, 1, 1541}, /* Select or enter the functions to be graphed */
{ ORDINARY_GRAPH, 1, 1540}, /* Select or enter the function to be graphed */
{ MINMAX, 1, 2366}, /* Find the minimum and maximum of */
{ MINMAX, 2, 2367}, /* on the interval */
{ RELATED_RATES,1,2013}, /* Equations valid for all times */
{ RELATED_RATES,2, 2014}, /* Equations valid for only one time */
{ IMPLICIT_DIFF,1, 640}, /* Differentiate with respect to which variable? */
{ RIEMANN_SUMS, 1, 2018}, /* Riemann sums */
{ RIEMANN_SUMS, 2, 2019}, /* from */
{ RIEMANN_SUMS, 3, 2020}, /* to */
{ RIEMANN_SUMS, 4, 2021}, /* Number of intervals */
{ RIEMANN_SUMS, 5, 2022}, /* Style of sums */
{ SIMPSONS_RULE, 1, 2023}, /* Simpson's rule */
{ TRAPEZOID_RULE, 1, 2024} /* Trapezoid rule */
/* FINISH THIS
GRAPH_INEQUALITY
GRAPH_RELATION
POLYROOTS
PARAMETRIC_GRAPH
POLAR_GRAPH
CONTOUR_PLOT
COMPLEX_CONTOUR_PLOT
SOLVE_ODE
SOLVE_TWO_ODES
HIGH_ORDER_ODE
*/
};
/*____________________________________________________*/
static enterprompt SymbolEnterPrompts[100] =
{ { 3,3,3}
};
/*____________________________________________________*/
enterprompt *getGraphEnterPrompts (int *n)
// return (a pointer to) the above array, with its dimension in *n
{ *n = sizeof(GraphEnterPrompts)/sizeof(enterprompt);
return GraphEnterPrompts;
}
/*____________________________________________________*/
enterprompt *getSymbolEnterPrompts (int *n)
{ *n = sizeof(SymbolEnterPrompts)/sizeof(enterprompt);
return SymbolEnterPrompts;
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists