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,...
-
Factorial of n is the product of all positive descending integers . Factorial of n is denoted by n!. For example: 4 ! = 4 * 3 * 2 ...
-
Factorial of n is the product of all positive descending integers . Factorial of n is denoted by n!. For example: 4 ! = 4 * 3 * 2 * ...
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