Forgot password? Create an Account
Java2Career ― What is Intern String.?When to use Intern Strings ? ∙ Only one String object is shared by all string valued constant expressions with the same character sequence. Such strings are called Intern String, meaning that they share a unique ...
Tags: Java Programs
Innovative ― 8 weeks 5 days ago
IT Computing World ― SWASTIK IN JAVA ∙ class swastik ∙ { ∙ public static void Main(String[] args) ∙ { ∙ int i, j, sp = 0; ∙ for(i = 1;i<=9;i++) ∙ { ∙ for(j=1;j<=9;j++) ∙ { ∙ if(i == 4 || j == ...
Tags: Tutorial, Programming, Patterns, Java Programs, How To
Amulya Ratan ― 10 weeks 5 days ago
IT Computing World ― Converting Binary Number To Decimal Number In Java ∙ import java.io.*; ∙ class bin_dec ∙ { ∙ public static void main(String args[])throws IOException ∙ { ∙ BufferedReader cin = new BufferedReader(new...
Tags: Tutorial, Programming, Conversion, Binary, Java Programs, How To
Amulya Ratan ― 10 weeks 6 days ago
IT Computing World ― Magic Number in Java:- ∙ Magic Number i.e, 1234 = 1+2+3+4 = 10 = 1+0 = 1. ∙ Hence 1234 is magic number. ∙ import java.io.*; ∙ class magic ∙ { ∙ public static void main(String args[])throws IOException...
Tags: Tutorial, Programming, Java Programs, How To
IT Computing World ― CHECK WHETHER NUMBER IS AUTOMORPHIC OR NOT ∙ import java.io.*; ∙ class automorphic ∙ { ∙ public static void main(String args[])throws IOException ∙ { ∙ BufferedReader cin = new BufferedReader(new...
Tags: Tutorial, Programming, Automorphic, Java Programs, How To
IT Computing World ― Sorting Array in Descending Order ∙ In Java ∙ import java.io.*; ∙ class sort_desc ∙ { ∙ public static void ∙ main(String args[])throws IOException ∙ { ∙ BufferedReader cin = new ∙...
Tags: Tutorial, Programming, Java Programs, Sorting, How To
IT Computing World ― CHECK WHETHER STRING/NUMBER IS PALINDROME OR NOT IN JAVA ∙ import java.io.*; ∙ class palindrome ∙ { ∙ public static void main(String args[])throws IOException ∙ { ∙ BufferedReader cin = new ...
Tags: Tutorial, Palindrome, Programming, Java Programs, How To
IT Computing World ― Push & Pop in Java using stack ∙ import java.io.*; ∙ import java.util.*; ∙ class push_pop ∙ { ∙ public static void main(String args[]) ∙ { ∙ int i; ∙ Stack stack1 = new Stack(); ∙...
Tags: Tutorial, Programming, Push-pop, Java Programs, Stack, How To
IT Computing World ― Searching Array In Java ∙ import java.io.*; ∙ class search ∙ { ∙ public static void ∙ main(String args[])throws IOException ∙ { ∙ BufferedReader cin = new ∙ BufferedReader(new...
Tags: Tutorial, Programming, Java Programs, Searching, How To
IT Computing World ― Sorting Array in Ascending Order In Java ∙ import java.io.*; ∙ class sort ∙ { ∙ public static void main(String args[])throws IOException ∙ { ∙ BufferedReader cin = new BufferedReader(new...
IT Computing World ― Tutorial : Add One to each digit of Number In Java ∙ class one_add ∙ { ∙ public static void main(String args[]) ∙ { ∙ int n = 189; ∙ int i, pos = 0, rem; ∙ int a[] = new int[pos]; ∙...
Java2Career ― If you want to create a PDF file or manipulate existing PDF file, IText is a free and open source library for doing this.Using iText you can easily create Portable Document Format (PDF).Here I am writing code to create a PDF with some text.But ...
Innovative ― 17 weeks ago
You got a blog? Or you are just interested in being a brand on the Internet? Where exactly ...
I have no doubt that creating and using an eBook for marketing is one of the most powerful ...
Chances are you’re eating more sugar than you think, especially if you’re ...