- 1
I'm stuck
Fill in the blanks to declare a method that takes one integer parameter and then displays the value divided by 2. void MyFunc( x) { int result = x 2; Console.WriteLine( ); }
1 Resposta
- 1
I don't write cs.
Does this work?
void MyFunc(number) {
Console.WriteLine(number / 2);
}