0
fill in the missing operator to decrease the value of x by one
int x=42; x_; Console.Writeline(x)
5 Réponses
+ 1
x--
0
thanks appreciate your answers but will preferred Klaus x--
0
you have to use "--" because "-1" is no operator.
- 1
x-1
- 1
x--
int x=42; x_; Console.Writeline(x)