My previous answers still apply. For example if you were writing a method to add two numbers together, the method would have to accept two arguments and return the result ie
Code:
int add(int num1, int num2)
    {
    return num1 + num2;
    }