Advertisement
daniv1

Untitled

Mar 28th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. import java.awt.*;
  2. import java.awt.event.*;
  3. import java.awt.geom.*;
  4. import java.math.*;
  5. import java.lang.*;
  6.  
  7. public class ForWhile extends Frame {
  8.    
  9.  
  10. public void paint(Graphics g) {
  11.     Graphics2D graph = (Graphics2D)g;
  12.       graph.setStroke(new BasicStroke(3.0f));
  13.       graph.setColor(Color.black);
  14.      double a = 100;
  15.      double b =200;
  16.       for(int i = 0 ; i<=10 ; i++)
  17.          
  18.              {    
  19.           double c = Math.random()*800;
  20.  
  21.           double d = Math.random()*800;
  22.          
  23.           Line2D line = new Line2D.Double(a,b,c,d);
  24.           graph.draw(line);
  25.           a = c;
  26.           b = d;
  27.              }
  28.       }
  29.  
  30.    
  31.      
  32.  
  33.     public static void main(String[] args) {
  34.           Frame frame = new ForWhile();
  35.          
  36.           frame.addWindowListener(
  37.                   new WindowAdapter(){
  38.                       public void windowClosing(WindowEvent we){
  39.                       System.exit(0);
  40.                      }
  41.                     }
  42.                   );
  43.           frame.setSize(1000, 1000);
  44.           frame.setVisible(true);
  45.     }
  46.    
  47.    
  48.    
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement