fork download
  1. // circtor.cpp
  2. // графические объекты "круг" и конструкторы
  3. #include "msoftcon.h " // для функций консольной графики
  4. //////////////////////////////////////////////////////////
  5. class circle // графический объект "круг"
  6. {
  7. protected:
  8. int xCo, yCo; // координаты центра
  9. int radius;
  10. color fillcolor; // цвет
  11. fstyle fillstyle; // стиль заполнения
  12. public:
  13. // конструктор
  14. circle(int x, int y, int r, color fc, fstyle fs):
  15. xCo(x), yCo(y), radius(r), fillcolor(fc), fillstyle(fs)
  16. { }
  17. void draw() // рисование круга
  18. {
  19. set_color(fillcolor); // установка цвета и
  20. set_fill_style(fillstyle); // стиля заполнения
  21. draw_circle(xCo, yCo, radius);// вывод круга на экран
  22. }
  23. };
  24. ////////////////////////////////////////////////////////// ___________________________Г_л_а_в_а_ 6. _О_б_ъ_е_к_т_ы__ и_ _к_л_а_с_с_ы________________________231
  25. int main()
  26. {
  27. init_graphics(); // инициализация графики
  28. // создание кругов
  29. circle c1(15, 7, 5, cBLUE, X_FILL);
  30. circle c2(41, 12, 7, cRED, O_FILL);
  31. circle c3(65, 18, 4, cGREEN, MEDIUM_FILL);
  32. c1.draw(); // рисование кругов
  33. c2.draw();
  34. c3.draw();
  35. set_cursor_pos(1, 25); // левый нижний угол
  36. return 0;
  37. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:3:84: fatal error: msoftcon.h : No such file or directory
 #include "msoftcon.h " // для функций консольной графики
                                                                                    ^
compilation terminated.
stdout
Standard output is empty