Answered You can hire a professional tutor to get the answer.
IDS401-s19 Assignment number 6.
IDS401-s19 Assignment number 6.
Continuing with assignment number 5, once you have accumulated the array of shapes prompt the user
for the output file name including folder that they wish to save the results in as well as how they want to
delimit the individual entries on the line (space, comma, or tab). Using this is information write the
results to that file. To verify that the file was created properly open in Excel and import the data into
Excel. Include a screen shot of Excel that has that data and save the file as an Excel file. Sample results
from application and imported into Excel below.
number shape length width radius area perimeter
0 s 10.0 0.0 0.0 100.0 40.0
1 r 10.0 20.0 0.0 200.0 60.0
2 c 0.0 0.0 10.0 314.1592653589793 62.83185307179586
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
This is my shape model
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package edu.uic.ids.model;
public class Shape {