User Profile

Collapse

Profile Sidebar

Collapse
thijo
thijo
Last Activity: Mar 11 '09, 11:09 AM
Joined: Dec 30 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • thijo
    started a topic error. help for solving
    in Java

    error. help for solving

    hi,
    i'm coding to take a input vector inputdata, and continuously find standard deviation to count how many distinct data ar available.for this i implement a small method called findk().
    [code=java]
    public int findk(Vector inputdata ,double minSD)
    {

    inputdata=new Vector();
    double tolerance=0.001 ,thisSD;
    Collections.sor t(inputdata);
    ...
    See more | Go to post

  • thijo
    replied to it is urgent please help me
    in Java
    thanks for help. but i dont know how to implement arraylist. when i declared arraylist and stored my result in it, it is stored as a single dimension. then how could i implement the looping for the printing the data in the format i want. please help in coding. it will be of great help. i have to finish my project
    See more | Go to post

    Leave a comment:


  • thijo
    replied to it is urgent please help me
    in Java
    i have given that it is not giving the output in the format how i need. plz go threw my post
    See more | Go to post

    Leave a comment:


  • thijo
    started a topic it is urgent please help me
    in Java

    it is urgent please help me

    [code=java]
    public class Point
    {

    private int x;

    private int y;

    private int Number;


    public Point(int X, int Y)
    {

    this.x =X;
    this.y = Y;
    this.Number=0;
    }



    public void assign(int clustNo)
    {

    this.Number = clustNo;

    }


    ...
    See more | Go to post
    Last edited by r035198x; Mar 3 '09, 08:57 AM. Reason: added code tags, please don't forget them next time

  • thijo
    started a topic how to write a trigger

    how to write a trigger

    thank you for your previous reply.
    today i have one more task to finish.
    the problem is that
    we have an invoice table with fields ( invoice_id,date , item_id,item_na me, price_per_item, quantity,cust_i d)
    here (item_id ,item_name and price_per_item) are from table item_details.
    now i have to write a trigger to track the users who have changed the price_per_item column before insertion in invoice table.
    please...
    See more | Go to post

  • thijo
    started a topic horizontal display of records

    horizontal display of records

    consider a table employee with fields empid, ename and department.
    records are
    Code:
    (1,Ram,sales),(2,Abi,Purchase)
    consider another table salary with fields empid,month,yea r,and amount received every month.
    records are
    Code:
    (1,january,2007,2500),(1,february,2007,2300),
    (1,march,2007,2800),(1,april,2007,2300),
    (1,may,2007,2300),(1,june,2007,3300),
    (1,july,2007,2300),(1,august,2007,2300),
    (1,september,2007,4300),(1,october,2007,2300),
    ...
    See more | Go to post
    Last edited by Atli; Dec 30 '08, 03:55 PM. Reason: Added [code] tags and made the data a little more readable.
No activity results to display
Show More
Working...