Select The Lesson:
Welcome to Online Education Of Sri Lanka
/*eduLanka Online education web site of Sri Lanka -------- w w w . e d u L a n k a . c o m ------------ java programs for University students - who follow courses - BIT - SLIIT and more find more lessons in http://www.it.edulanka.com eduLanka@gmail.com this programs under GNU licence */ import java.io.*; class LowArray{ private double[]a; public LowArray(int size){ a=new double[size]; } public void setElem(int index, double value){ a[index]=value; } public double getElem(int index){ return a[index]; } } public class LowArrayApp{ public static void main(String args[]){ int n=10; int j; LowArray aa=new LowArray(n); aa.setElem(0,77); aa.setElem(1,43); aa.setElem(2,4); aa.setElem(3,21); for(j=0;j