Advertisement
daniv1

Untitled

Mar 25th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.83 KB | None | 0 0
  1. import java.awt.*;
  2. import java.awt.event.*;
  3. import java.awt.geom.*;
  4.  
  5.     public class Chess extends Frame {
  6.          
  7.          public void paint(Graphics g) {
  8.           Graphics2D graph = (Graphics2D)g;
  9.            
  10.           graph.setStroke(new BasicStroke(3f));
  11.     int cnt = 0;
  12.           for(int x = 100 ; x <=450 ; x+=50) {
  13.              cnt++;
  14.               for(int y = 100 ; y <=450 ; y+=50) {
  15.                   cnt++;
  16.                   Shape square = new Rectangle2D.Double(x, y,50,50);
  17.                   graph.draw(square);
  18.                   if(cnt % 2 == 0)
  19.                       graph.fill(square);
  20.               }
  21.           }
  22.          }
  23.  
  24.  
  25.     public static void main(String[] args) {
  26.           Frame frame = new Chess();
  27.          
  28.           frame.addWindowListener(
  29.                   new WindowAdapter(){
  30.                       public void windowClosing(WindowEvent we){
  31.                       System.exit(0);
  32.                      }
  33.                     }
  34.                   );
  35.           frame.setSize(1000, 1000);
  36.           frame.setVisible(true);
  37.          
  38.  
  39.     }
  40.  
  41.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement