Для домашней работы я работаю над методом, который рисует полиномиальную кривую.Я начал отображать декартовой план 20х20, но по какой-то причине выписки не отображаются.Может ли кто-нибудь помочь мне разобраться в проблеме?Спасибо
public class PolynomialCurves{
public static void main (String[] args) {
double[] line = {1.0, 2};
double lineThickness = 1;
drawCurve(line, lineThickness, '$');
}
// A method that draws the graph of a polynomial curve
public static void drawCurve(double[] coefficient, double thickness, char symbol) {
// Loop that counts the y position
for (int y = 20; y >= 0; y--) {
if (y == 10) {
// Loop that counts the x position
for (int x = 0; x < 21; x++) {
if (x == 10) {
System.out.print('+');
}
else if (x == 20) {
System.out.print('>');
}
else {
System.out.print('-');
}
}
}
}
}
}