hello everyone, i'm in class and having problems with this method declaration. i'm brand new so please don't be too rough, just trying to understand what i'm doing wrong & what will be needed to fix it
public static int iMethod (int i);
{
while (true)
{
if (i == 0)
return i;
}
}