How would I write this program?
Posted: Tue Jul 12, 2022 8:16 am
How would I write this program?
ArrayDefinition.java 1 public class ArrayDefinition { PERANTEE222222 26 27 28 29 } // // Part I define and instantiate // /** * Define and instantiate the following one-dimensional arrays. A 24-element float array named fa A 500-element int array named ia A 50-element double array named da A 10-element char array named ca */ // TODO Define your arrays here /** Part II Define and initialize. Define and initialize the following arrays. Do not use the new operator. - A String array named monthNames containing the names of each of the 12 months. Use proper-case for the names (eg "January"). An int array named monthDays containing the number. of days in each month. Use 28 for February. // TODO Define your arrays here
ArrayDefinition.java 1 public class ArrayDefinition { PERANTEE222222 26 27 28 29 } // // Part I define and instantiate // /** * Define and instantiate the following one-dimensional arrays. A 24-element float array named fa A 500-element int array named ia A 50-element double array named da A 10-element char array named ca */ // TODO Define your arrays here /** Part II Define and initialize. Define and initialize the following arrays. Do not use the new operator. - A String array named monthNames containing the names of each of the 12 months. Use proper-case for the names (eg "January"). An int array named monthDays containing the number. of days in each month. Use 28 for February. // TODO Define your arrays here