Advertisement
Guest User

new

a guest
Jun 23rd, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <graphics.h>
  4.  
  5. int main
  6. {
  7.  int gd=DETECT,gm;
  8. initgraph(&gd,&gm,"");
  9. circle (5,5,5);
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement