Monday, May 3, 2010

jaypee's world programmer: Array

http://www.jaypeeworldprogrammer.blogspot.com

Array

An array is a collection of individual values, all of the same data type, stored in adjacent memory locations. ... The individual values are referred to by using the array name together with an integral valued index in square brackets.

I will give a sample program using array, next lesson.

java programming

this is a book in java programming 4th edition. This book serves as your guide, as well as, your foundation to be the best  java programmer ever.

Sunday, May 2, 2010

Do while Loop syntax in programming

the syntax of do while in programming:

initialization;
do
{
statements;
inc/dec;
}while(condition);

next Lesson i'll make a sample program using do while loop