0
Variable
Can you help me? Fill in the blanks to declare a variable, add 5 to it and print its value. x = 4 x = 5 print
2 Respostas
+ 1
Example:
x = 0;
x = x + 5;
print(x)
+ 1
muito obrigado!
Can you help me? Fill in the blanks to declare a variable, add 5 to it and print its value. x = 4 x = 5 print