> Please develop a program on Java for the situation below?

Please develop a program on Java for the situation below?

Posted at: 2014-12-18 
You thought we wouldn't notice? https://answers.yahoo.com/question/index...

Anyways, here you go.

http://pastebin.com/Kda8tUEq

If someone can develop a functioning program on Java for the situation below please post it. I am at my wits end trying to figure this out. I have worked on this program tirelessly for almost the entire day and I'm freaking done. If you can do this I will tell stories of this heroic act to my grandchildren and they themselves will continue telling the legend of the hero who prevented me from jumping out of a second story window.

In this program, you will design an application for a company that creates personalized house signs to compute the price of customer orders based on the following factors:

? The minimum charge (base price) for all type of sign is $20.

? If the sign is made of wood, add $10, if it is a plastic only add $5.

? The first 5 letters or numbers are included in the minimum charge; there is an extra $2 charge for each additional character.

? Black or white characters are included in the minimum charge; there is an additional $8 charge for colored lettering.

? If the total charge is more than $100, provide 25 percent of discount on total price, not on the items individually.

Write a program that accepts data for an order: order number, customer name, sign type (wood or plastic), the number of characters, and color of characters. The program should continue as long as customer wants to order another sign. Display all the entered data, number of the orders, and the final price for the customer to pay.