Click here to Skip to main content
15,913,854 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
hello all
am try to write code with java for Buyer Agent . I want to make the Buyer Agent to recognizes to the Banker agent & make an account & Deposit & Withdrawal .
after that recognizes to the seller agent & Looking for a specific commodity , that the seller agent Announced , & Buy this item with less price.

thanx
Posted
Updated 29-Jun-11 21:04pm
v2
Comments
wizardzz 29-Jun-11 16:42pm    
I'm going to fancy English is not your first language, though your profile says you live in the States. Is there any way at all to clarify what you are trying to do, provide an example possibly?
TorstenH. 30-Jun-11 3:05am    
added homework tag. This is a classic student task.

Please take some time to do this on your own. If you have problems DURING development you're welcome to ask.

1 solution

I've made a start:

Java
/*
 * BuyerAgentApp.java
 */

package buyer;

/**
 * The main class of the application.
 */
public class BuyerAgentApp {

    /**
     * Main method launching the application.
     */
    public static void main(String[] args) {
        // logic goes here
    }
}


I'll leave the rest to you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900