What's in a List

NOTE: Originally published on my blog ----> What's in a List Introduction List is an interface in Java Collections that represents an ordered sequence of elements.Features of a List: Access...
0 Read More

Using While Loop

Program:public class Multiples{public static void main(String args[]) { int num=1; int meeting_point=0; int no1=21, no2=43; while(true) { if(num%no1==0 && num%no2==0) { meet...
0 Read More