Question: Need help making this program. Given the starting values 180 , shoes, 7241.42 defined as follows: intitemNum=180;StringitemType=shoes;doubleitemCost=7241.42; Using all three variables in the print statement

Need help making this program.
Given the starting values 180 , shoes, 7241.42 defined as follows: intitemNum=180;StringitemType="shoes";doubleitemCost=7241.42; Using all three variables in the print statement output the following 180 shoes cost $7241.42 on sale! Use this to start your assignment public static void main(String[] args) \{ //Declare Variables Here int itemCount =180; String itemType = "shoes"; double item Cost =7241.42; //Put output code here \}
Step by Step Solution
There are 3 Steps involved in it
To print the required statement using the provided variables you can modify your main metho... View full answer
Get step-by-step solutions from verified subject matter experts
