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,...
-
package javabox; public class ReverseNumberExample { public static void main(String[] args) { int n = 1234, s = 0; ...
-
Prime number is a number that is greater than 1 and divided by 1 or itself. For example 2, 3, 5, 7, 11, 13, 17.... are the prime numbers...
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