program to implement array of objects

program to implement array of objects

import java.io.*;
import java.util.*;
public class dataa
{
    DataInputStream in=new DataInputStream(System.in);
    int i;
    int a[i]=int acid[5];
    String name1[i]=new String[5];
    float c[i]=new float bal[5];
    String name1;
    int a;
    public void print()
    {
        System.out.println("Enter Your Name:");
        name1=in.readLine();
    }


    public void comparename()
    {
        for(i=1;i<=5;i++)
        {
            if(name1.compareToIgnorecase(name[i]))
            {
                a=0;
            }
            if(a==0)
            {
                System.out.print("Your Account-ID:"+a[i]);
                System.out.println("Your Name:"+name[i]);
                System.out.println("Enter Balance:"+"Rs."+b[i]);
                break;
            }
        }
    }
}

class info
{
    public static void main(String args[])throws IOException
    {
        dataa A=new dataa();
        info();//default constructor
        info(acct_id[i],name[i],bal[i])//parameterized constructor
        {
            for(i=1;i<=5;i++)
            {
                System.out.print("Enter Account-ID:");
                acid[i]=Integer.parseInt(in.readLine());
                System.out.println("Enter Name:");
                name[i]=in.readLine();
                System.out.println("Enter Balance:"+"Rs.");
                bal[i]=Float.parsefloat(in.readLine());
            }
        };
        A.print();
        A.comparename();
    }
}
View Answers

April 9, 2012 at 5:38 PM

import java.io.*;

public class info
{
   static DataInputStream in=new DataInputStream(System.in);
   static  int acid[]=new int[5];
   static String name[]=new String[5];
    static float bal[]=new float[5];
    static String name1;
    static int a;
    public static void print()
    {
        try{
        System.out.print("Enter Your Name:");
        name1=in.readLine();
        }
        catch(Exception E){}
    }


    public static void comparename()
    {
        for(int i=0;i<5;i++)
        {
            if(name1.equalsIgnoreCase(name[i]))
            {
                a=0;
            }
            if(a==0)
            {
                System.out.println("Your Account-ID:"+acid[i]);
                System.out.println("Your Name:"+name[i]);
                System.out.println("Enter Balance:"+"Rs."+bal[i]);
                break;
            }
        }
    }


 public static void main(String args[])throws IOException  {


            for(int i=0;i<5;i++)
            {
                System.out.print("Enter Account-ID:");
                acid[i]=Integer.parseInt(in.readLine());
                System.out.print("Enter Name:");
                name[i]=in.readLine();
                System.out.print("Enter Balance:"+"Rs.");
                bal[i]=Float.parseFloat(in.readLine());
            }

      print();
       comparename();
    }
}









Related Tutorials/Questions & Answers:
Program to implement array of Objects.
Program to implement array of Objects.  Create a class it has.... Initialize an array of objects. Pass a name from the command line & search for the name in the array of objects , if it is existing print the information
program to implement array of objects
program to implement array of objects  import java.io.*; import java.util.*; public class dataa { DataInputStream in=new DataInputStream(System.in); int i; int a[i]=int acid[5]; String name1[i]=new String[5
Advertisements
Implement array of objects
Implement array of objects  import java.io.*; import java.util.*; public class dataa { DataInputStream in=new DataInputStream(System.in); int i; int a[i]=int acid[5]; String name1[i]=new String[5
array program
array program  write a java program which will take 10 elements as command line arguments and count how many times 3 occurs in array
program of array
program of array  write a program that initializes an array with ten random integers and then prints four lines of output,containing:every element at an even index,every even element,all elements in reverse order,and only
program in array
program in array  print("code sample");write a program that initializes an array with ten random integers and then prints four lines of output...(); int arr[]=new int[10]; System.out.println("Array of Random
java program based on array
StudentDemo which will have main method. Declare array of Student object with size 10. Initialize all 10 elements of this array with new objects. Write logic which...java program based on array  Create Student class with attributes
one dimensional array program
one dimensional array program  Design and implement a java program that will read a file containing numbers and compute the following statistics: the rannge( low, high), the average and the median(middle number). Notes
java program based on array
java program based on array  write a program to create an array of 10 integers in main.accept values from the user in that array .now again ask the use another nomber and pass the array and the no. entered to function called
how to make a program on array
how to make a program on array  When you make a program on array that the element will move downward and upward and when you input twice 0 then thats the time that it will not move. pls. give me a formula...tnx
array variable in a java program
array variable in a java program  How do i write a program that will prompt the user for a list of 5 prices, that cosist of the sum of all the prices, the average of the prices, and all prices that are higher than the calculated
Two Dimensional array program
to elements of the array such that the last element become the first one and the first become the last.let the program output elements of the first array...Two Dimensional array program  consider a two dimensional array
Reverse integer array program
Reverse integer array program  Been tasked with the following question: Write a method that accepts an integer array and returns a new array with all the elements in reverse order. For example, if the input array is [2, 4, 6, 8
Sun's JDBC-ODBC driver does not implement the getPrimaryKeys() method for the DatabaseMetaData Objects.
Sun's JDBC-ODBC driver does not implement the getPrimaryKeys() method for the DatabaseMetaData Objects.  Is there a way to find the primary key(s) for an Access Database table? Sun's JDBC-ODBC driver does not implement
JSON array objects retrieval in javascript
JSON array objects retrieval in javascript   I am fetching some data from database and want to show these values in a combo in javascript but combo box is not populating any value, perhaps i am doing something wrong in json
retrieve JSON array objects in javascript
retrieve JSON array objects in javascript  I am getting one value by JSON array, but how can i store multiple values in json array and how can i retieve it by javascript? Any help please auto.jsp <script type="text
declare a variable that will store an array of 5 objects
declare a variable that will store an array of 5 objects  Q7. Give a declaration for a variable that will 'store' an array of 5 Card objects... you   Declare Array of 5 objects in the following way: int list[]=new
Two Dimensional Array Program
Two Dimensional Array Program Using Nested for loop...; program . In this session we will teach how to use of a two dimensional array. First of all we will define a class "Matrix". In this program we
java 2 d array program
java 2 d array program  write a program 2-d matrix addition through user's input?  Hi Friend, Try the following code: import java.util.*; class MatrixAddition{ public static void main(String[] args
saving form bean with Array of objects (collection) - Struts
saving form bean with Array of objects (collection)  Hi all... thanks..:) I am facing problem to capture my array of objects(Order) in form bean... an array of objects(Order.java) Order.java (java bean)- value object implements
JavaScript array of objects
JavaScript array of objects   ... that help you in understanding JavaScript array of objects. For this we are using... that is used to instantiate an array object and is initialized with various list
Three Dimensional Array program
Three Dimensional Array program       This is a very simple Java program. In this program we... the multidimensional array we are going to make a matrix. Now in this program use
Two Dimensional Array Program
will learn how to display arrange form of two dimensional array program... a integer for array declaration Two dimensional array program. We are going... Two Dimensional Array Program    
create and use an array variable in a java program
create and use an array variable in a java program  how do i write a program that will prompt the user for a list of 5 prices, once the user has entered all values , your program should compute and display the following: The sum
Array list java program - Java Interview Questions
Array list java program  Create an employee class with an employee id's,name & address. Store some objects of this class in an arraylist. When... and address variables..how we can store objects of that class in arraylist and how
write a program that Implement an integrated COM client server to add two numbers.by visuall studio 2010
write a program that Implement an integrated COM client server to add two numbers.by visuall studio 2010  write a program that Implement an integrated COM client server to add two numbers.by visuall studio 2010 if someone can do
JavaScript array queue
JavaScript array queue       In the JavaScript array we can implement the Queue by using the push... will demonstrate you how to implement Queue by using the JavaScript array methods as follows
Two Dimensional Array Program Using Nested For Loop
Two Dimensional Array Program Using Nested For Loop        This is very simple program... dimensional array program. Firstly, we have to define class "TwoDimensional "
Creating Array Objects in JavaScript with JSON
Creating Array Objects in JavaScript with JSON... in this tutorial we have provided you the way array of objects are declared...; which contains two array objects "Maths" and "Science"
write a program to demonstrate call by value and call by reference.(pass objects as parameters)
write a program to demonstrate call by value and call by reference.(pass objects as parameters)  write a program to demonstrate call by value and call by reference.(pass objects as parameters
Insert an array list of objects with addAll(ArrayList) method
Insert an array list of objects with addAll(ArrayList) method In this section you will learn to insert an array list of objects to another list. Here is an example that provides the usage of the addAll(Arrayist
PHP Array
PHP Array In this page we will learn about PHP Array. We will also understand how to use PHP Array in your PHP program. The PHP Array is very useful... to stored values in key value pair. Here is simple example of PHP array: $fruit
program
program  Write a program to print details of a week for a particular day using array of objects Integer and String. OUTPUT: First Day of Week... Seventh Day of Week is Sunday Note: Use two dimensional array of String
array
array  take a 2d array and display all its elements in a matrix fome using only one for loop and ple explain the program in below
in_array
in_array  in_array in php
please please i wanna insertion sort program find calendar to array value (1000,5000,10000), please help me
Insertion sort program find calendar to array value 1000,5000,10000  program find calendar for insertion sort in jfram to array 1000
is _array()
is _array()  is_array() in php   Hi Friend, This function is of Boolean type.It checks whether a variable is an array or not. Here is an example: <?php $yes = array('Hello', 'World'); echo is_array($yes) ? 'Array
is _array()
is _array()  is _array()   Hi Friend, This function is of Boolean type.It checks whether a variable is an array or not. Here is an example: <?php $yes = array('Hello', 'World'); echo is_array($yes) ? 'Array
Array
Array  how can i use elements of an array in a circular form? that is if the searching of the element reach the last elements of the array, then it will start serching from the begining of the array
Array
Array  is it possible to define array like this..? int[] intArray = new int[] {4,5,6,7,8}; Explain...?   Yes, you can. Java Initialize Array
Array
Array  What if i will not declare the limit index of an array, how will I declare an array and store values with it using loop?   Hi Friend... Scanner(System.in); int array[]=new int[5]; System.out.println("Enter
array
array  write and test a function named mirror that is passed an array of n floats and returns a newly created array that contains those n floats... the array {10.1,11.2,8.3,7.5,22} into{22,7.5,8.3,11.2,10.1
array
array  write and test a function named mirror that is passed an array of n floats and returns a newly created array that contains those n floats... the array {10.1,11.2,8.3,7.5,22} into{22,7.5,8.3,11.2,10.1
array
array  write and test a function named mirror that is passed an array of n floats and returns a newly created array that contains those n floats... the array {10.1,11.2,8.3,7.5,22} into{22,7.5,8.3,11.2,10.1
Array
Array  How do i insert elements into an array up to a limit from...("Enter Range: "); int size=input.nextInt(); int array[]=new int[size]; System.out.println("Enter Array Elements: "); for(int i=0;i<
array
array  WAP in java to store 6 element in array P and 4 element in array Q. Produce the third arra y R containing all element from p & q
Implement push
Implement push  Hi.. How do you implement push on a flex applications? give me answer with example so i clearly understand Thanks  Ans: push implement on a flex applications using BlazeDS Server
Objective C Array
and remove the objects from the given list of array if the array is declared mutable... also add or insert more objects in an array even after declaring...Objective C Array In a simple term we can say that array is a object, which
array
array  array memory allocation is dynamic or static in java   Java Arrays have dynamic memory allocation
Array
Array  can we create an array of size 1 lakh in java programming

Ads