jadenayngel5780 jadenayngel5780 12-01-2023 Computers and Technology contestada const COST_OF_SHIRT = 20.00; function start(){ println("How many T-shirts would you like to buy?"); var tshirts = readInt("How many tshirts are you buying? "); var cost = tshirts*COST_OF_SHIRT; println("Your total is $" + cost); }