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,...
-
class Node { int data ; Node next ; Node ( int data ){ this . data = data ; ...
-
package javabox; public class ReverseNumberExample { public static void main(String[] args) { int n = 1234, s = 0; ...
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