Subscribe to:
Posts (Atom)
-
Armstrong number is a number that is equal to the sum of cubes of its digits for example 0, 1, 153, 370, 371, 407 etc. Let's say,...
-
In fibonacci series , next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 etc. package ja...
-
A palindrome number is a number that is same after reverse . For example 545, 151, 34543, 343, 171, 48984 package javabox; cla...
Basic structure and printing elements of Linked list in java
class Node { int data ; Node next ; Node ( int data ){ this . data = data ; ...
No comments:
Post a Comment