104 Posted Topics
Re: [CODE=JAVA] public class Tuition { public static void main() { int hours = 0; double fees = 0.0; double rate = 0.0; double tuition = 0.0; displayWelcome(); hours = getHours(); rate = getRate(hours); tuition = calcTuition(hours, rate); fees = calcFees(tuition); displayTotal(tuition + fees); } //end of main() [/CODE] OK, you … | |
Re: At my school, we use Java Au Natural, it's a really great book, and it's very descriptive and informative, and best of all, it's free ^_^ here's the link: [url]http://www.cs.ccsu.edu/~jones/book.htm[/url] | |
Ok, so, for school, we have to write a program that calculates the value of Pi as accurately as possible. Earlier in the year, we worked with a "Turtle" program, it drew lines and circles, ect. it started in the center of the JFrame, and moved to where you told … | |
ok, so, we have to make a program that displays the date 100 days from today, the day you were born, and the date 10,000 days after your birth date. I've done all that, but i want to take it a step further, i want the user to be able … |
The End.