Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

please help me with the following

1) make a sierpenski triangle using java and recursion. Make it similar to the code below. And please comment the code

2) Please make the follow code out put on the console. It a t square fractal 

import java.awt.image.*;
import java.awt.Color;
import java.io.*;
import javax.imageio.*;

public class Main
{
   static final int DIMENSION = 1000;    
   static BufferedImage image = new BufferedImage(DIMENSION, DIMENSION, BufferedImage.TYPE_INT_RGB);
   static final int WHITE = Color.WHITE.getRGB();
   static final int BLACK = Color.BLACK.getRGB();

   private static void drawSquare(int x, int y, int side)
   
   {
      if (side <= 0)
         return;
      else
      {
         
         int left = x - side/2;
         int top  = y - side/2;
         int right = x + side/2;
         int bottom = y + side/2;

         
         for (int i = left; i < right; i++)
           for (int j = top; j < bottom; j++)
           {
              image.setRGB(i, j, BLACK);
           }

         
         drawSquare(left, top, side/2);
         drawSquare(left, bottom, side/2);
         drawSquare(right, top, side/2);
         drawSquare(right, bottom, side/2);
      }
   }  

   public static void main (String[] args) throws IOException
   {
     
     
     
      for (int i = 0; i < DIMENSION; i++)
        for (int j = 0; j < DIMENSION; j++)
        {
           image.setRGB(i, j, WHITE);
        }  

     
      drawSquare(DIMENSION/2, DIMENSION/2, DIMENSION/2);
     
   
      File imagefile = new File("tfractal.jpg");
      ImageIO.write(image, "jpg", imagefile);
   }
}

Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education