Курсовая работа: Розробка програми мовою програмування С++ по пошуку коренів нелінійних рівнянь
setcolor(RED);
line(10,240,630,240);
line(620,235,630,240);
line(620,245,630,240);
settextstyle(0,0,1);
outtextxy(620,225,"x");
circle(20+(x+2)*150,240,2);
outtextxy(20+(x+2)*150,225,"x");
circle(20+(a+2)*150,240,2);
outtextxy(20+(a+2)*150,245,"a");
circle(20+(b+2)*150,240,2);
outtextxy(20+(b+2)*150,255,"b");
getch();
free(buf);
}
}
dyhotom.cpp
#include <stdlib.h>
#include <iostream.h>
#include <conio.h>
#include <graphics.h>
#include <dos.h>
#include <stdio.h>
#include <math.h>
double f(double x)
{
return x*x*x/3-atan(x);
}
//===============================================================