Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <graphics.h>
  2.  
  3. #include <iostream>
  4.  
  5. using namespace std;
  6. int a;
  7. int main()
  8. {
  9. initwindow(8,6);
  10. circle(200,300,60);
  11. for(a=0;a<800;a=a+3)
  12. line(0, 0, a,600);
  13. while(!kbhit());
  14. closegraph();
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement