Question: List the two reasons this code will not compile. public void main (String[] args ) int x = 3; int y = foo(x); System.out.println(y); }
List the two reasons this code will not compile.
public void main (String[] args )
int x = 3;
int y = foo(x);
System.out.println(y);
}
public double foo (int x)
{
x += 4;
return x;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
