First, let's clean up your code a little:
def isLast(c: Int, r: Int):Int = {
if(r == 1)
return 1
else if (r == c)
return 1
// but what about when r is neither 1 nor c ??
}
So you are telling scala that if r is 1, then return 1, and if r == c, return 1. That's fine. But if you want the method to return an Int, it has to return one in every case. So Scala complains because it doesn't know what Int to return when r is neither 1 nor c.
The fix is to add an else clause than returns some other Int.
As an additional note, you can and should leave out the return keyword here, letting Scala implicitly know that the result of the if-else expression, as the last expression in the function's body, should be returned:
def isLast(c: Int, r: Int):Int = {
if(r == 1)
1
else if (r == c)
1
else
0 // or some other Int
}
As a final note, if you have a function whose name starts with is, then it should probably return a Boolean. In other words, if the input is last, then return true, otherwise false.