0% found this document useful (0 votes)
122 views48 pages

Java Programming

The document contains code snippets for various Java programming exercises: 1. A pyramid printing program that takes a character as input and prints a pyramid with increasing number of characters per line. 2. A program that takes student names as command line arguments and prints their number and name. 3. A program that demonstrates dividing by zero and typecasting floats to integers. 4. A program that calculates average temperatures using a two dimensional array and method. 5. Programs defining classes for products with attributes and methods to input and display product details. 6. Programs defining classes for Cartesian points with methods to get/set coordinates and display points. 7. Extension of above to include triangle and rectangle classes with methods

Uploaded by

Bhavin
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
122 views48 pages

Java Programming

The document contains code snippets for various Java programming exercises: 1. A pyramid printing program that takes a character as input and prints a pyramid with increasing number of characters per line. 2. A program that takes student names as command line arguments and prints their number and name. 3. A program that demonstrates dividing by zero and typecasting floats to integers. 4. A program that calculates average temperatures using a two dimensional array and method. 5. Programs defining classes for products with attributes and methods to input and display product details. 6. Programs defining classes for Cartesian points with methods to get/set coordinates and display points. 7. Extension of above to include triangle and rectangle classes with methods

Uploaded by

Bhavin
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 48

bhavinmodi04@gmail.

com

PROGRAMMING SKILLS (JAVA)


1. Write a simple java application to print a pyramid with 5 lines. The first line has one character, 2nd line has two characters and so on. The character to be used in the pyramid is taken as a command line argument.
class pyramid {

public static void main(String str[]) { int i,j,n; n= Integer.parseInt(str[1]); //convert string to integer if(str[0].length() != 1 ) //check length of first argument System.out.println("Operation failed !! "); else { //First solution

for(i=0;i<n;i++) // Loop for no of line { for(j=n;j>i;j--) //for displaying space System.out.print(' ');

System.out.print( str[0] +' '); System.out.println(); // Newline }

/*second solution .....

BHAVIN MODI

for(j=0;j<=i;j++) //for displaying character

PROGRAMMING SKILLS (JAVA)


j=1; for(;n>0;n--) // Loop for no of line { for(i=1;i<n;i++) //for displaying space System.out.print(' '); for(i=1;i<=j;i++) //for displaying character System.out.print( str[0] +' '); System.out.println(); // Newline j=j+1; i=1; } */ } } }

class prog3 { public static void main(String arg[])

BHAVIN MODI

2. Write a Java application which takes several command line arguments, which are supposed to be names of students and prints output as given below: (Suppose we enter 3 names then output should be as follows): Number of arguments = 3 1: First Student Name is =Tom 2: Second Student Name is =Dick 3: Third Student Name is =Harry

PROGRAMMING SKILLS (JAVA)


{

int a; a=arg.length; String str[]={"First","Second","Third","four","five","six","seven","eight","nine" ,"ten"}; for(int i=0;i<a;i++) { System.out.println(str[i]+" Student Name is =" +arg[i]); }

} }

3. Write a class, with main method, which declares loating point variables and observe the output of dividing the floating point values by a 0, also observe the effect of assigning a high integer value (8 digits and above) to a float and casting it back to int and printing.
BHAVIN MODI
class prog4 { public static void main(String arg[]) { double a=123456789123.4; double b; b=a/0; int c; c=(int)a; System.out.println(a+" "+c +" " +b);

PROGRAMMING SKILLS (JAVA)


} }

4. Write a class called Statistics, which has a static method called average, which takes a one dimensional array for double type, as parameter, and prints the average for the values in the array. Now write a class with the main method, which creates a two-dimensional array for the four weeks of a month, containing minimum temperatures for the days of the week(an array of 4 by 7), and uses the average method of the Statistics class to compute and print the average temperatures for the four weeks.
class state { public static void avg(double d[]) { double tot=0; for(int i=0;i<d.length;i++) { tot=tot+d[i]; } System.out.println("Temrature ="+ tot/d.length); } } public class p5 { public static void main(String args[]) { int i,j; double d[][]=new double[4][7]; double a[]=new double[7]; for(i=0;i<4;i++) { for(j=0;j<7;j++) { a[j]=i;

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} } state.avg(a); } }

5. Define a class called Product, each product has a name, a product code and manufacturer name. Define variables, methods and constructors, for the Product class. Write a class called Test Product, with the main method to test the methods and constructors of the Product class.
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; class Product { int Pid; String Pname,Mname; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); public Product() { this.Pid = 0; this.Pname = null; this.Mname = null; } public Product(int i,String s1,String s2) { this.Pid = i; this.Pname = s1; this.Mname = s2; } public void getDetail() throws IOException { String t; System.out.printf("Enter Product ID: "); t = br.readLine();

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


this.Pid=Integer.parseInt(t); System.out.printf("Enter Product Name: "); this.Pname = br.readLine(); System.out.printf("Enter Manufacturer Name: "); this.Mname = br.readLine(); } public void Display() { System.out.println("Product ID: " + this.Pid); System.out.println("Product Name: " + this.Pname); System.out.println("Manufacturer Name: " + this.Mname); } } class P6 extends Product { public static void main(String args[]) { Product p = new Product(); try{ p.getDetail(); } catch(IOException e) { System.out.println("Error occured while Reading from console"); } p.Display(); } }

6. Define a class called Cartesian Point, which has two instance variables, x and y. Provide the methods get X() and get Y() to return the values of the x and y values respectively, a method called move() which would take two integers as parameters and change the values of x and y respectively, a method called display() which would display the current values of x and y. Now overload the method move() to work with single parameter, which would set both x and y to the

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


same values, Provide constructors with two parameters and overload to work with one parameter as well. Now define a class called Test Cartesian Point, with the main method to test the various methods in the Cartesian Point class.
import java.lang.*; class CP { int x,y; public CP(int x,int y) { this.x=x; this.y=y; } public CP(int a) { x=y=a; } int getx() { return x; } int gety() { return y; } void move(int x,int y) { this.x=x; this.y=y; } void display() { System.out.println("Current value of x : "+getx()); System.out.println("Current value of y : "+gety()); } void move(int a) { x=y=a; } }

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


class p7 { public static void main(String arg[]) { CP cp1 = new CP(5,25); System.out.println("\n\nDefault Values with "+5+" And "+25); cp1.display(); System.out.println("After Function move with two arguments is called,"); cp1.move(11,25); cp1.display(); System.out.println("After Function move with one arguments is called,"); cp1.move(95); cp1.display(); System.out.println("-------------------------------------"); CP cp2 = new CP(15); System.out.println("\n\nDefault Values with"+15); cp2.display(); System.out.println("After Function move with two arguments is called,"); cp2.move(35,65); cp2.display(); System.out.println("After Function move with one arguments is called,"); cp2.move(105); cp2.display(); } }

7. Define a class called Triangle, which has constructor with three parameters, which are of type Cartesian Point, defined in the exercise 7. Provide methods to find the area and the perimeter of the Triangle, a method display() to display the three Cartesian Points separated by ':' character, a method move() to move the first

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


Cartesian Point to the specified x, y location, the move should take care of relatively moving the other points as well, a method called rotate, which takes two arguments, one is the Cartesian Point and other is the angle in clockwise direction. Overload the move method to work with Cartesian Point as a parameter. Now define a class called Test Triangle to test the various methods defined in the Triangle class. Similarly also define a class called Rectangle which has four Cartesian Point.
import MyPack.CP; import MyPack.Triangle; import MyPack.Rectangle; import java.util.Scanner; class p8{ public static void main(String args[]){ Scanner s = new Scanner(System.in); float x,y; int n=0; while(true){ System.out.println("1. Triangle"); System.out.println("2. Rectangle"); System.out.println("3. Exit"); System.out.print("Enter your choice..."); n=s.nextInt(); switch(n){ case 1 : System.out.println("Create a Triangle. " ); System.out.print("Enter x for point A "); x=s.nextFloat(); System.out.print("Enter y for point A "); y=s.nextFloat(); CP A = new CP(x,y); System.out.print("Enter x for point B "); x=s.nextFloat(); System.out.print("Enter y for point B "); y=s.nextFloat(); CP B = new CP(x,y); System.out.print("Enter x for point C "); x=s.nextFloat(); System.out.print("Enter y for point C ");

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


y=s.nextFloat(); CP C = new CP(x,y); Triangle T = new Triangle(A,B,C); while(true){ System.out.println("-------------------MENU----------------------"); System.out.println("1. Display Current Points."); System.out.println("2. Calculate The Area." ); System.out.println("3. Move The Triangle."); System.out.println("4. Rotate The Triangle "); System.out.println("5. Exit"); System.out.println("Enter Your Choice..."); n=s.nextInt(); switch(n){ case 1 : System.out.println("The Current Points Are..."); T.Display(); break; case 2 : T.Area(); break; case 3 : System.out.print("Enter new x :"); x=s.nextFloat(); System.out.print("Enter new y :"); y=s.nextFloat(); T.move(x,y); System.out.println("Triangle has been replaced.."); break; case 4 : float degree; System.out.print("Enter a degree to rotate : "); degree=s.nextFloat(); T.rotate(T.a,degree); T.rotate(T.b,degree); T.rotate(T.c,degree); System.out.println("The triangle has been rotated with "+degree+" degree"); break; case 5 : System.exit(0); default : System.out.println("Invalid Input..."); } }

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


case 2 : System.out.println("Create a Reactangle. " ); System.out.print("Enter x for point A "); x=s.nextFloat(); System.out.print("Enter y for point A and B"); y=s.nextFloat(); CP A2 = new CP(x,y); System.out.print("Enter x for point B "); x=s.nextFloat(); CP B2 = new CP(x,A2.y); System.out.print("Enter y for point C "); y=s.nextFloat(); CP C2 = new CP(B2.x,y); CP D2 = new CP(A2.x,C2.y); Rectangle R = new Rectangle(A2,B2,C2,D2); while(true){ System.out.println("-------------------MENU----------------------"); System.out.println("1. Display Current Points."); System.out.println("2. Calculate The Area." ); System.out.println("3. Move The Rectangle."); System.out.println("4. Rotate The Rectangle "); System.out.println("5. Exit"); System.out.println("Enter Your Choice..."); n=s.nextInt(); switch(n){ case 1 : System.out.println("The Current Points Are..."); R.Display(); break; case 2 : R.Area(); break; case 3 : System.out.print("Enter new x :"); x=s.nextFloat(); System.out.print("Enter new y :"); y=s.nextFloat(); R.move(x,y); System.out.println("Rectangle has been replaced.."); break; case 4 : float degree; System.out.print("Enter a degree to rotate : ");

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


degree=s.nextFloat(); R.rotate(R.a,degree); R.rotate(R.b,degree); R.rotate(R.c,degree); R.rotate(R.d,degree); System.out.println("The rectangle has been rotated with "+degree+" degree"); break; case 5 : System.exit(0); default : System.out.println("Invalid Input..."); } } case 3 : System.exit(0); default : System.out.println("Invalid Input..."); } } } }

BHAVIN MODI

package MyPack; public class CP { public float x,y; public CP(float x,float y) { this.x=x; this.y=y; } public CP(float a) { x=y=a; } public float getx() { return x; } public float gety() { return y; } public void move(float x,float y)

PROGRAMMING SKILLS (JAVA)


{ this.x=x; this.y=y; } public void display() { System.out.println("Current value of x : "+getx()); System.out.println("Current value of y : "+gety()); } public void move(float a) { x=y=a; } }

package MyPack; import MyPack.CP; import java.lang.Math; import java.util.Scanner; import java.lang.Double; public class Rectangle{ public CP a,b,c,d; public Rectangle(CP a,CP b,CP c,CP d){ this.a=a; this.b=b; this.c=c; this.d=d; System.out.println("Rectangle is Created..."); } public void Area(){ float Area; Area = ((a.x*(b.y - c.y)) + (b.x*(c.y-a.y)) + ((c.x*(a.y-b.y)))); System.out.println("The area of Triangle is "+Math.abs(Area)); } public void Display(){ System.out.println("\t\tA("+a.x+","+a.y+") # \t\t\t # B("+b.x+","+b.y+")\n\n\n\n"); System.out.println("\t\tD("+d.x+","+d.y+") # \t\t\t # C("+c.x+","+c.y+")"); }

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


public void move(float x,float y){ float new_x=x-a.x,new_y=y-a.y; a.x=x; a.y=y; b.x=b.x+new_x; b.y=b.y+new_y; c.x=c.x+new_x; c.y=c.y+new_y; d.x=d.x+new_x; d.x=d.y+new_y; } public void rotate(CP A,float a){ double a1 = (A.x*Math.cos(a))-(A.y*Math.sin(a)); double b2 =(A.x*Math.sin(a))+(A.y*Math.cos(a)); A.x = (float) a1; A.y = (float) b2; } }

package MyPack; import MyPack.CP; import java.lang.Math; import java.util.Scanner; import java.lang.Double;

BHAVIN MODI

public class Triangle{ public CP a,b,c; public Triangle(CP a,CP b,CP c){ this.a=a; this.b=b; this.c=c; System.out.println("Triangle is created.."); } public void Area(){ float Area; Area = ((a.x*(b.y - c.y)) + (b.x*(c.y-a.y)) + ((c.x*(a.y-b.y))))/2; System.out.println("The area of Triangle is "+Math.abs(Area)); } public void Display(){ System.out.println("\t\t\t\t # A("+a.x+","+a.y+")\n\n\n\n");

PROGRAMMING SKILLS (JAVA)


System.out.println("\t\tB("+b.x+","+b.y+") #\t\t # C("+c.x+","+c.y+")"); /*System.out.println("Point A = "+a.x+" : "+a.y); System.out.println("Point B = "+b.x+" : "+b.y); System.out.println("Point C = "+c.x+" : "+c.y);*/ } public void move(float x,float y){ float new_x=x-a.x,new_y=y-a.y; a.x=x; a.y=y; b.x=b.x+new_x; b.y=b.y+new_y; c.x=c.x+new_x; c.y=c.y+new_y; } public void rotate(CP A,float a){ double a1 = (A.x*Math.cos(a))-(A.y*Math.sin(a)); double b2 =(A.x*Math.sin(a))+(A.y*Math.cos(a)); A.x = (float) a1; A.y = (float) b2; } }

8. Override the to String, equals and the hash Code methods of the classes Triangle and Rectangle defined in exercises 7 and 8 above, in appropriate manner, and also redefine the display methods to use the to String method.
BHAVIN MODI
class Cartesianpoint { int x,y; Cartesianpoint(int x,int y) { this.x=x; this.y=y; }

PROGRAMMING SKILLS (JAVA)


} public class p9 { Cartesianpoint a,b,c; p9(Cartesianpoint a,Cartesianpoint b,Cartesianpoint c) { this.a=a; this.b=b; this.c=c; } void display() { System.out.print(toString()); } public String toString() { return("For This Instance A(x,y) is ("+a.x+","+a.y+")\n For point B(x,y) is ("+b.x+","+b.y+")\n For point C(x,y) is ("+c.x+","+c.y+")\n\n"); } public boolean equals(p9 obj) { if(this.a.x==obj.a.x && this.a.y==obj.a.y) { if(this.b.x==obj.b.x && this.b.y==obj.b.y) { if(this.c.x==obj.c.x && this.c.y==obj.c.y) { return(true); } } } return(false); } public int hashCode() {

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


int i=Integer.parseInt(""+a.x+""+a.y+""+""+b.x+""+b.y+""+""+c.x+""+c.y+" "); return(i); } public static void main(String[] arg) { Cartesianpoint a,b,c; a=new Cartesianpoint(1,1); b=new Cartesianpoint(3,5); c=new Cartesianpoint(5,1); p9 p,q; p=new p9(a,b,c); a=new Cartesianpoint(1,1); b=new Cartesianpoint(3,5); c=new Cartesianpoint(5,1); q=new p9(a,b,c); p.display(); q.display(); System.out.print(p.equals(q)); System.out.println(p.hashCode()); System.out.println(q.hashCode());

} }

import java.io.*; interface input { BufferedReader br =new BufferedReader(new InputStreamReader(System.in)); }

BHAVIN MODI

9. Define a class called Polygon Manager, which manages a number of Polygon instances. Provide methods to add, remove and list the Polygon instances managed by it. Test the methods of Polygon Manager by writing appropriate class with main method.

PROGRAMMING SKILLS (JAVA)


abstract class polygon_manager implements input { int x[]; int i; int size; int y[]; polygon_manager() { } polygon_manager(int xy) { x=new int[xy]; y=new int[xy]; size=xy; i=0; } abstract void display(); } class triangle extends polygon_manager { triangle() { } triangle(int xy) { super(xy); } void add()throws IOException { System.out.println("\nEnter the Three Co-Ordinates :"); for(i=0;i<3;i++) { System.out.println("Enter the x"+(i+1)+" And Y"+(i+1)+"=->"); x[i]=Integer.parseInt(br.readLine()); y[i]=Integer.parseInt(br.readLine()); } } void display() { System.out.print("\n\tTriangle :- {"); for(i=0;i<3;i++) {

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.print("("+x[i]+","+y[i]+")"); } System.out.print("}"); } } class rectangle extends polygon_manager { rectangle() { } rectangle(int xy) { super(xy); } void add()throws IOException { System.out.println("\nEnter the four Co-Ordinates :"); for(i=0;i<4;i++) { System.out.println("Enter the x"+(i+1)+" And Y"+(i+1)+"=->"); x[i]=Integer.parseInt(br.readLine()); y[i]=Integer.parseInt(br.readLine()); } } void display() { System.out.print("\n\tRectangle :- {"); for(i=0;i<4;i++) { System.out.print("("+x[i]+","+y[i]+")"); } System.out.print("}"); } } class pantagon extends polygon_manager { pantagon() { } pantagon(int xy) { super(xy);

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} void add()throws IOException { System.out.println("\nEnter the five Co-Ordinates :"); for(i=0;i<5;i++) { System.out.println("Enter the x"+(i+1)+" And Y"+(i+1)+"=->"); x[i]=Integer.parseInt(br.readLine()); y[i]=Integer.parseInt(br.readLine()); } } void display() { System.out.print("\n\tPantagon :- {"); for(i=0;i<5;i++) { System.out.print("("+x[i]+","+y[i]+")"); } System.out.print("}"); } } class hexagon extends polygon_manager { hexagon() { } hexagon(int xy) { super(xy); } void add()throws IOException { System.out.println("\nEnter the six Co-Ordinates :"); for(i=0;i<6;i++) { System.out.println("Enter the x"+(i+1)+" And Y"+(i+1)+"=->"); x[i]=Integer.parseInt(br.readLine()); y[i]=Integer.parseInt(br.readLine()); } } void display() {

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.print("\n\tHexagon :- {"); for(i=0;i<6;i++) { System.out.print("("+x[i]+","+y[i]+")"); } System.out.print("}"); } } class octagon extends polygon_manager { octagon() { } octagon(int xy) { super(xy); } void add()throws IOException { System.out.println("\nEnter the Eight Co-Ordinates :"); for(i=0;i<8;i++) { System.out.println("Enter the x"+(i+1)+" And Y"+(i+1)+"=->"); x[i]=Integer.parseInt(br.readLine()); System.out.println(); y[i]=Integer.parseInt(br.readLine()); } } void display() { System.out.print("\n\tOctagon :- {"); for(i=0;i<8;i++) { System.out.print("("+x[i]+","+y[i]+")"); } System.out.print("}"); } } class polygon implements input { public static void main(String arg[])throws IOException {

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


int ch,len=0,j=0,pos; polygon_manager p[]=new polygon_manager[100]; while(true) { System.out.println("\nFunction Of Polygon..........."); System.out.println("1.Add"); System.out.println("2.Remove"); System.out.println("3.Display"); System.out.println("4.Exit"); System.out.println("Enter Your Choice =->"); ch=Integer.parseInt(br.readLine()); switch(ch) { case 1: menuformat(); ch=Integer.parseInt(br.readLine()); switch(ch) { case 1: triangle t=new triangle(3); t.add(); p[len]=t; len++; break; case 2: rectangle r=new rectangle(4); r.add(); p[len]=r; len++; break; case 3: pantagon pa=new pantagon(5); pa.add(); p[len]=pa; len++; break; case 4: hexagon h=new hexagon(6); h.add(); p[len]=h; len++; break;

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


case 5: octagon o=new octagon(8); o.add(); p[len]=o; len++; break; case 6: break; default : System.out.println("\nPlz Enter 1 To 6 ................."); break; } break; case 2 : if(len<1) { System.out.println("\nPolygon does not exists............"); break; } System.out.println("\nList Of Polygon Is .............."); for(j=0;j<len;j++) { p[j].display(); } menuformat(); ch=Integer.parseInt(br.readLine()); switch(ch) { case 1: System.out.println("\nEnter The Position =->"); pos=Integer.parseInt(br.readLine()); if(pos<len) { if(p[pos-1].size==3) { p[j]=null; } else

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


{ System.out.println("\nInvalid Selection................"); } } else { System.out.println("\nInvalid Position................"); } break; case 2: System.out.println("\nEnter The Position =->"); pos=Integer.parseInt(br.readLine()); if(pos<len) { if(p[pos-1].size==4) { p[j]=null; } else { System.out.println("\nInvalid Selection................"); } } else { System.out.println("\nInvalid Position................"); } break; case 3: System.out.println("\nEnter The Position =->"); pos=Integer.parseInt(br.readLine()); if(pos<len) { if(p[pos-1].size==5) { p[j]=null;

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} else { System.out.println("\nInvalid Selection................"); } } else { System.out.println("\nInvalid Position................"); } break; case 4: System.out.println("\nEnter The Position =->"); pos=Integer.parseInt(br.readLine()); if(pos<len) { if(p[pos-1].size==6) { p[j]=null; } else { System.out.println("\nInvalid Selection................"); } } else { System.out.println("\nInvalid Position................"); } break; case 5: System.out.println("\nEnter The Position =->"); pos=Integer.parseInt(br.readLine()); if(pos<len) { if(p[pos-1].size==8)

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


{ p[j]=null; } else { System.out.println("\nInvalid Selection................"); } } else { System.out.println("\nInvalid Position................"); } break; case 6: break; default : System.out.println("\nPlz Enter 1 To 6 ................."); break; } break; case 3 : System.out.println("\nList Of Polygon Is .............."); for(j=0;j<len;j++) { p[j].display(); } break; case 4 : return ; } } } public static void menuformat() { System.out.println("\n\nSelect Any Polygon.................."); System.out.println("1.Tringle"); System.out.println("2.Rectangle"); System.out.println("3.Pantagon");

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.println("4.Hexagon"); System.out.println("5.Octagon"); System.out.println("6.Back To Main Menu..........."); System.out.println("Enter Your Choice =->"); } }

10. Define a class called Statistical Data which manages a number of readings of type int. Provide a method to set Data available in the form of an array, a method add to individually add data of type int, a method to reset the entire data, and methods to return the following statistics: 1. mean 2. median 3. mode 4. variance 5. standard deviation 6. specified percentile (between 0 100) the method should have a parameter. 7. specified quartile (between 1 - 3) the method should have a parameter. 8. interquartile range
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException;

public StatisticalData() { N=0; vname=""; }

BHAVIN MODI

class StatisticalData { int v[],N; String vname;

PROGRAMMING SKILLS (JAVA)


public void setData() { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int i; System.out.printf("How many values You want to Enter? "); try{ N=Integer.parseInt(br.readLine()); } catch(IOException e) { System.out.println("Error while Reading from console"); } v=new int[N]; System.out.printf("Enter variable Name and its values: "); try{ vname = br.readLine(); for(i=0;i<N;i++) { v[i]=Integer.parseInt(br.readLine()); } } catch(IOException e) { System.out.println("Error while Reading from console"); } System.out.println("Variable Name: " + vname); System.out.print("Your Data are: "); for(i=0;i<N;i++) { System.out.print(" " + v[i]); } System.out.println(); } public double Mean() { double m=0; int i; for(i=0;i<N;i++) {

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


m=m+v[i]; } m=m/N; return m; } public double Median() { double m=0; int temp[]=new int[N]; int i,j,x,n=N-1; for(i=0;i<N;i++) { temp[i]=v[i]; } for(i=0;i<n;i++) { for(j=0;j<n-i;j++) { if(temp[j] > temp[j+1]) { x=temp[j]; temp[j]=temp[j+1]; temp[j+1]=x; } } } if(N%2 == 0) { x=N/2; m=temp[x]; x--; m=m+temp[x]; m=m/2; } else { x=N/2; System.out.println("IND: " + x); m=temp[x]; } return m;

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} public double Mode() { double M,x,m; M=Median(); x=Mean(); m=3*M-2*x; return m; } public double Variance() { double var=0,m; int i; m=Mean(); for(i=0;i<N;i++) { var=var+(v[i]-m)*(v[i]-m); } var=var/(N-1); return var; } public double StdDev() { double sd; int i; sd=Variance(); sd=Math.sqrt(sd); return sd; }

BHAVIN MODI

public double Percentile(int p) { if(p==0) return 0.0; double P,n; int temp[]=new int[N]; int i,j,x; for(i=0;i<N;i++) { temp[i]=v[i];

PROGRAMMING SKILLS (JAVA)


} for(i=0;i<N-1;i++) { for(j=0;j<N-i-1;j++) { if(temp[j] > temp[j+1]) { x=temp[j]; temp[j]=temp[j+1]; temp[j+1]=x; } } } if(p==100) return temp[N-1]; else { P=p; n=N; n=P*n/100; P=Math.ceil(n); if(P-n > 0) { i=(int)P; P=temp[i-1]; } else { i=(int)P; P=temp[i]+temp[i-1]; P=P/2; } return P; } } } class P14 { public static void main(String args[]) { BufferedReader br=new BufferedReader(new InputStreamReader(System.in));

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


StatisticalData s=new StatisticalData(); int ch=10,ch1=1,p=-1; double result,Q3; s.setData(); do { do { System.out.println("1. Set Data"); System.out.println("2. Mean"); System.out.println("3. Median"); System.out.println("4. Mode"); System.out.println("5. Variance"); System.out.println("6. Standard Deviation"); System.out.println("7. Percentile (between 0 - 100)"); System.out.println("8. Quartile (between 1 - 3)"); System.out.println("9. Interquartile Range"); System.out.println("10. Exit"); System.out.print("Enter Your Choice: "); try{ ch=Integer.parseInt(br.readLine()); } catch(IOException e) { System.out.println("Error while Reading from console"); } }while(ch<1 || ch>10); switch(ch) { case 1: s.setData(); break; case 2: result=s.Mean(); System.out.println("Mean: " + result); break; case 3: result=s.Median(); System.out.println("Median: " + result); break; case 4: result=s.Mode();

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.println("Mode: " + result); break; case 5: result=s.Variance(); System.out.println("Variance: " + result); break; case 6: result=s.StdDev(); System.out.println("Standard Deviation: " + result); break; case 7: do { System.out.print("Which Percentile you want to calculate? "); try{ p=Integer.parseInt(br.readLine()); } catch(IOException e) { System.out.println("Error while Reading from console"); } }while(p<0 || p>100); result=s.Percentile(p); System.out.println("Percentile: " + result); break; case 8: do { System.out.println("1. First "); System.out.println("2. Second "); System.out.println("3. Third "); System.out.print("Enter Your Choice: "); try{ ch1=Integer.parseInt(br.readLine()); } catch(IOException e) { System.out.println("Error while Reading from console"); } }while(ch1<1 || ch1>3); switch(ch1)

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


{ case 1: result=s.Percentile(25); System.out.println("First Quartile: " + result); break; case 2: result=s.Percentile(50); System.out.println("Second Quartile: " + result); break; case 3: result=s.Percentile(75); System.out.println("Third Quartile: " + result); } break; case 9: Q3=s.Percentile(75); result=s.Percentile(25); result=Q3-result; System.out.println("Inter Quartile Range: " + result); } }while(ch != 10); } }

import java.util.*; import java.io.*; class StatisticalData { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int marks[]; int n; StatisticalData(){

BHAVIN MODI

11. Update the class Statistical Data, and define a method called load From CSV, which takes as parameter an Input Stream, where numeric data is available in an ASCII format, in a comma separated form. Overload this method to take a File instance as parameter. Test the new methods using appropriate data.

PROGRAMMING SKILLS (JAVA)


marks=new int[60]; n=0; } void add()throws IOException{ if(n==60) { System.out.println("There is 60 student in the class..."); System.out.println("You can't enter any more marks....."); } else{ System.out.print("Enter Mark of Student : "+(n+1)+" : "); try{ int temp=Integer.parseInt(br.readLine()); if(temp>100 || temp<0) { System.out.println("Marks should be in range between 0 - 100..."); add(); } else{ marks[n]=temp; n++; } } catch(NumberFormatException nfe) { System.out.println("Marks can't be the String..... OR can not leave it blank....."); add(); } } } float mean() { display(); float sum=0; for(int i=0;i<n;i++){ sum+=marks[i]; } return (sum/(n*1.0f)); } float median(){

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


sort(); display(); float med=0; int tmp=(n+1)/2; if(n%2==0) { med=(marks[tmp-1]+marks[tmp])/2.0f; } else { med=marks[tmp-1]; } return med; } void mode(){ display(); float m=0.0f; int count[]=new int[n]; for(int i=0;i<n;i++){ count[i]=1; for(int j=i+1;j<n;j++){ if(marks[i]==marks[j]) { count[i]++; } } } int temp=1; int temp1=-1; for(int k=0;k<n;k++){ if(count[k]>temp) { temp=count[k]; temp1=k; } } System.out.println("Mode is/are ....."); if(temp1==-1) { m=(3.0f*median())-(2.0f*mean()); System.out.println(m); } else{ for(int i=0;i<n;i++){ if(count[i]==temp) { System.out.println(marks[i]); }

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} } } float variance(){ float mean=mean(); float sum=0; System.out.println("\n\n (X-Xbar) | (X-Xbar)^2 \n"); for(int i=0;i<n;i++){ System.out.println((marks[i]-mean)+" | "+((marks[i]-mean)*(marks[i]-mean))); sum+=(marks[i]-mean)*(marks[i]-mean); } return (sum/((n-1)*1.0f)); } float standard_deviation(){ float variance = variance(); return ((float)(Math.sqrt(variance))); } int specified_percentile(int nth) { sort(); display(); int i=(int)Math.ceil(((nth*(n))/100.0f)); return (marks[i-1]); } float specified_quertile(int nth) { sort(); display(); float sq=0.0f ; float temp=((nth*(n+1))/4.0f); int t=(int)(temp); float k=temp%t; if(k==0.0f) { sq=marks[t-1]; } else{ int i=(int)Math.ceil(temp); sq=((marks[i-1]+marks[i-2])/2.0f); } return sq; } float interquarlite_rang(){ return (specified_quertile(3)-specified_quertile(1));

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} void load_from_csv(File f) throws IOException{ FileInputStream fis=new FileInputStream(f); Vector v=new Vector(); v.add(fis); loading_process(v,1); } void load_from_csv(InputStream istr) throws IOException{ Vector v1=new Vector(); v1.add(istr); loading_process(v1,0); } void loading_process(Vector v,int ch1) throws IOException{ InputStream istr=null; FileInputStream fis=null; if(ch1==0){ istr=(InputStream)v.get(0); } else{ fis=(FileInputStream)v.get(0); } int asc=0,i=0; int m[]=new int[60]; char[] str=new char[1]; String temp2=""; System.out.println("Your Data is as Bellow ...."); while(asc!=-1) { if(ch1==0) { asc=istr.read(); } else{ asc=fis.read(); } if(asc==44 || asc==13) { int t=Integer.parseInt(temp2); if(t>100 || t<0) { System.out.println(t+" is not valid Mark...., is not Accepted"); } else{ System.out.println(t+" is Accepted....");

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


m[i]=t; i++; } temp2=""; } else{ if(asc>=48 && asc<=57) { str[0]=(char)asc; String temp3=new String(str); temp2=temp2.concat(temp3); } } } System.out.println("Your meaningfull data from CSV file found as follow...."); for (int j=0;j<i;j++){ System.out.println(m[j]); } int k=0; while(k==0) { System.out.print("\nSure you want to import this data ? (Y/N) :"); String ch=br.readLine(); if(ch.equalsIgnoreCase("Y") || ch.equalsIgnoreCase("N")){ if(ch.equalsIgnoreCase("Y")){ marks=new int[60]; n=i; marks=m; System.out.println("\n"+n+" Student's Mark imported...."); System.out.println("\nYour Data is Successfully imported...."); } else if(ch.equalsIgnoreCase("N")){ System.out.println("\nYour previous data is as it is......\n Importation of data has been cancelled...."); } k=1; } else{ System.out.println("Enter Y (for Yes) \nEnter N (for No)... \nOtherwise System can't recognize...."); } }

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


} void sort(){ for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ if(marks[i]>marks[j]) { int temp=marks[i]; marks[i]=marks[j]; marks[j]=temp; } } } } void display(){ System.out.println("\n Your Data is .....\n"); for(int i=0;i<n;i++){ System.out.print(marks[i]+" "); } System.out.println(""); } int get_size(){ return n; } } class p15{ public static void main(String args[]) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); StatisticalData s=new StatisticalData(); int ch=1; while(ch!=0){ System.out.println("\nMain Menu"); System.out.println("01. Insert Mark"); System.out.println("02. Mean"); System.out.println("03. Median"); System.out.println("04. Mode"); System.out.println("05. Variance"); System.out.println("06. Standard Deviation"); System.out.println("07. Specified Percentile"); System.out.println("08. Specified Quarlite"); System.out.println("09. Interquartile Range"); System.out.println("10. Load Data from CSV file ( using Input Stream )");

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.println("11. Load Data from CSV file ( using File )"); System.out.println("0. Exit"); System.out.print("Enter your choice :"); try{ ch=Integer.parseInt(br.readLine()); } catch(NumberFormatException nfx) { System.out.println("You can not enter the string.... OR can not leave it blank....."); ch=13; } if(s.get_size()==0 && ch!=1 && ch!=10 && ch!=11) { if(ch>11) { System.out.println("System can't recognize your choice,re-enter your selection...."); } else if( ch != 0 ) { System.out.println("Enter the mark of student first....."); } } else{ switch(ch) { case 1: String ch1="Y"; while(ch1.compareToIgnoreCase("N")!=0){ if(ch1.equalsIgnoreCase("Y") || ch1.equalsIgnoreCase("N")){ s.add(); } else{ System.out.println("Enter Y (for Yes) \nEnter N (for No)... Otherwise System can't recognize...."); } System.out.print("Want to add more ? (Y/N) :"); ch1=br.readLine(); } break; case 2:

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.println("Mean : "+s.mean()); break; case 3: System.out.println("Median : "+s.median()); break; case 4: s.mode(); break; case 5: System.out.println("Variance : "+s.variance()); break; case 6: System.out.println("Standard Deviation : "+s.standard_deviation()); break; case 7: int flag=0; while(flag==0) { try{ System.out.print("Enter value for Specified Percentile (0-100) :"); int p=Integer.parseInt(br.readLine()); if( p > 100 || p < 1 ) { System.out.println("Enter between 1 - 100 ....."); } else{ System.out.println("Specified Percentile for intput " + p + " is : "+s.specified_percentile(p)); flag=1; } } catch(NumberFormatException e) { System.out.println("Enter between 1 - 100 ....."); } } break; case 8:

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


flag=0; while(flag==0) { try{ System.out.print("Enter Value for Specified Quarlite (1-3) :"); int q=Integer.parseInt(br.readLine()); if( q > 3 || q < 1) { System.out.println("Enter between 1 - 3 ......"); } else{ System.out.println("Specified Quarlite for input " + q + " is : "+s.specified_quertile(q)); flag=1; } } catch(NumberFormatException e){ System.out.println("Enter between 1 - 3 ......"); } } break; case 9: System.out.print("Interquartile Range : "+ s.interquarlite_rang()); break; case 10: flag=0; String path=""; while(flag==0) { try{ System.out.print("Enter the Path for csv file :"); path=br.readLine(); String ext=path.substring(path.length()-4); if(ext.equalsIgnoreCase(".csv")){ InputStream istr=new FileInputStream(path); s.load_from_csv(istr); istr.close(); flag=1; } else{

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.println("System can't recognize your input...."); System.out.println("System can support only .CSV file...."); } } catch(FileNotFoundException e) { System.out.println("System can't find your inputed path...."); } catch(StringIndexOutOfBoundsException e){ System.out.println("Can't leave it blank..."); } } break; case 11: flag=0; path=""; while(flag==0) { String ext=""; try{ System.out.print("Enter the Path for csv file :"); path=br.readLine(); ext=path.substring(path.length()-4); } catch(StringIndexOutOfBoundsException e){ System.out.println("Cannot be Blank"); } if(ext.equalsIgnoreCase(".csv")) { try{ File f=new File(path); s.load_from_csv(f); flag=1; } catch(FileNotFoundException e) { System.out.println("System can't find your inputed path...."); } } else{

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


System.out.println("System can't recognize your input...."); System.out.println("System can support only .CSV file...."); } } break; case 12: s.display(); break; case 0: break; default: System.out.println("System can't recognize your choice, re-enter your selection...."); break; } } } } }

import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException;

BHAVIN MODI

12. Create a class called Statistical Data, which has capability of maintaining data regarding multiple variables. It should have a method to specify the variable names as String array and the method to load values from a file regarding the variables. eg. We consider two variables as percentage of marks in GCET exam and percentage of marks in 1st year of MCA, Provide methods in the class to compute the correlation coefficient between any two variables, specified in the parameter. Test the class by computing the correlation coefficient between the marks of GCET and marks of 1st year MCA for students of your class.

PROGRAMMING SKILLS (JAVA)


class StatisticalData { int v1[],v2[]; String v1name,v2name; public StatisticalData() { v1name=new String("str1"); v2name=new String(); v1=new int[5]; v2=new int[5]; v2name="str2"; } public void get() { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int i; System.out.println("Enter First variable name and its values: "); try{ v1name = br.readLine(); for(i=0;i<5;i++) { v1[i]=Integer.parseInt(br.readLine()); } System.out.println("Enter Second variable name and its values: "); v2name = br.readLine(); for(i=0;i<5;i++) { v2[i]=Integer.parseInt(br.readLine()); } } catch(IOException e) { System.out.println("Error while Reading from console"); } } public void correl_coeff() { double d,m1=0,m2=0,tatb=0,sab,ta2=0,tb2=0,sa,sb,cor_coef; int i; System.out.printf("%s: ",v1name); for(i=0;i<5;i++)

BHAVIN MODI

PROGRAMMING SKILLS (JAVA)


{ System.out.printf("%d ",v1[i]); } System.out.println(); System.out.printf("%s: ",v2name); for(i=0;i<5;i++) { System.out.printf("%d ",v2[i]); m1=m1+v1[i]; m2=m2+v2[i]; } System.out.println(); m1=m1/5; m2=m2/5; for(i=0;i<5;i++) { tatb=tatb+(v1[i]-m1)*(v2[i]-m2); ta2=ta2+(v1[i]-m1)*(v1[i]-m1); tb2=tb2+(v2[i]-m2)*(v2[i]-m2); } sab=tatb/4; sa=ta2/5; sb=tb2/5; sa=Math.sqrt(sa); sb=Math.sqrt(sb); cor_coef=sab/sa*sb; System.out.println("correlation co-efficient: " + cor_coef); } } class P24 { public static void main(String args[]) { StatisticalData x=new StatisticalData(); x.get(); x.correl_coeff(); } }

Digitally signed by BHAVIN Reason: I am the author of this document Location: Date: 09/01/12 07:22:56

BHAVIN MODI

You might also like