#!/bin/ch #include #include int main() { double MinX, MaxX, Step, x, y; int pointsX, pointsY, i; chstrarray name, value; class CResponse Response; class CRequest Request; class CPlot plot; Request.getFormNameValue(name, value); MinX = atof(value[1]); MaxX = atof(value[2]); pointsX = atoi(value[3]); double x1[pointsX], y1[pointsX]; Step = (MaxX - MinX)/(pointsX-1); for(i=0;i