question archive Write new tile method called betterTile(
Subject:Computer SciencePrice: Bought3
Write new tile method called betterTile(...) that takes two integer parameters: the number of rows and number of columns for tiling. For example, if you call betterTile(3, 5), it would create a new picture with 3 rows and five columns, or 15 tiled copies of the original image.
? Create a new test program called Lab9PartF to test your betterTile(...) method. Call betterTile(...) with a variety of rows and columns to see if it works properly.