
Bookstore a java example code
LEVEL: BEGINNER
This example is good for understanding
Array
methods
conditions(if and else)
the process of this bookstore:
1.First, we have a collection of books name:
static String[] book = { "java", "c", "c++", "php", "javascript", "html" };
2.we ask the user to which book is he want?
3. we search that book name in our list of books
4. if we find...