- 4
anyone plz help me
Fill in the blanks to declare a method that takes one argument of type int. public int myFunc( ---- x) ---- return x*10; ---
4 Answers
+ 5
int { }
0
public int myFunc (int x)
{
return x*10;
}
0
public int myfunc ( int x) {
}
0