Question You are supposed to write a complete Inventory system program in JAVA. All the parts’ details will be stored/retrieved using classes, methods, objects and Arrays . Below are the details of Parts: • PartID : integer • Description : alphanumeric of 30 character Manufacturer Date : 8 character max. • Quantity : integer • Price ...
Question : Develop a program in JAVA that allows the user to perform the following operations Main Menu 1) Convert Day Integer to Day String 2) Convert Month Integer to Month String 3) Convert Date Integer to Date String 4) Exits. import java.util.Scanner; public class Converssion { public static String dayToString(int day){ if(day==1){return "first";} else if(day==2){return "second";} else if(day==3){return "three";} else if(day==4){return "fourth";} else if(day==5){return "fifth";} else if(day==6){return "sixth";} else if(day==7){return "seventh";} ...