Advertisement
diablo878

Untitled

Jan 6th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.51 KB | None | 0 0
  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class ZbiorFigurGeometrycznych extends Applet {
  5.  
  6. final int a = 20;
  7. final int b = 40;
  8. final int r = 30;
  9.  
  10. public void init() {
  11.  
  12. }
  13.  
  14. public void paint(Graphics g) {
  15.  
  16.  
  17.  
  18. g.drawRect(20, 20, a, a);
  19. g.drawRect(50, 20, a, b);
  20. g.drawOval(80, 20, r, r);
  21.  
  22. }
  23.  
  24.  
  25. }
  26.  
  27. <html>
  28. <head>
  29. <title>ZbiorFigurGeometrycznych</title>
  30. </head>
  31. <body>
  32. <center>
  33. <applet
  34. code = "ZbiorFigurGeometrycznych<.class"
  35. width = "640"
  36. height = "200">
  37. </center>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement