104 Posted Topics

Member Avatar for Saaddani

[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 …

Member Avatar for jwenting
0
168
Member Avatar for francisprite

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]

Member Avatar for kalyan_au_cse
0
125
Member Avatar for llemes4011

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 …

0
62
Member Avatar for llemes4011

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 …

Member Avatar for llemes4011
0
145

The End.