User-submitted Java Projects

37
2372 reads

February 6, 2013

Pair of Dice


The program below demonstrates the rolling of the pair of dice until the pair gets a total of 2. The program has instance variables die1 and die2 which are private.

212
4401 reads

February 6, 2013

While Loop Syntax


This program demonstrates how to use while loop.

28
2350 reads

February 6, 2013

Do While Syntax


This program demonstrates how to use do-while loop.

299
4726 reads

February 6, 2013

Alphabet Looping


This program loops through the alphabets and also prints their corresponding number sequence.

169
2312 reads

February 6, 2013

Replacing substring with a String


The program below demonstrates how to replace a substring with a new String.

349
5880 reads

February 6, 2013

Checking Equal Strings


The program below checks the Strings if they are exactly the same and returns true if they are equal (use of == operator).

224
4184 reads

February 6, 2013

Using equalsIgnoreCase()


The program below demonstrates the use of equalsIgnoreCase() method. It checks whether the Strings are equal or not regardless of the cases.

28
2317 reads

February 6, 2013

Trig functions in Java


Here we demonstrate the trigonometric functions in the Math class.

29
644 reads
Madhan's picture

Submitted by

Madhan
Tags:

39
2408 reads

February 5, 2013

Control in a loop


WE show here that we can leave a loop on demand with a break statement thus changing the flow of control at a certain desire.