Question: Please don't create codes above the current basic level . I'm using BlueJ as Java Environment , so please create codes that are compatible with
Please don't create codes above the current basic level. I'm using BlueJ as Java Environment, so please create codes that are compatible with BlueJ. 




Circles You have been hired by a company to write a program that will read in a set of data about circles from a text file and produce certain information about the data set Concepts Arrays of Objects . File input Input Data Files and storage A circle can be defined by its center point (x, y) and its radius The text files your code will read from have the following pattern: they start with one integer, followed by a sequence of two number sets on two lines. The very first integer is how many sets are in the file. On the subsequent line, the first two numbers are the x and y coordinates of its center and the next number is the circle radius. These three values are integers. The last 3 numbers are the Red value, Green value, and Blue value of the color of the circle. These will be integers from 0 to 255. No commas, no parentheses, just values separated by space (whitespace) You program does not have to be responsible for files that do not match this format (in other words, if the end user gives you a filename with bad data and the program crashes, that's ok). You can create any text file you want for testing (use a program like Notepad or any other basic text editor). Here are some files I've created for you to use: circleData1.txtand circleData2.txt& You can copy and paste this data into a text file as a simple test case
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
