119k views
1 vote
Write the definition of the function moventhfront that takes as a parameter a positive integer, n

User Oxcug
by
7.7k points

1 Answer

3 votes
In Python:

def moventhfront(n):
#logic goes here

In Java:

public int moventhfront(int n)
{
// logic goes here
return n;
}

In C:

int moventhfront(int n)
{
// logic goes here
return n;
}

No related questions found