+ 5
Why not working degrees. Why if, for example, 5 ^ 2 output is an error, not 5^2 = 25
Why not working degrees. Why if, for example, 5 ^ 2 output is an error, not 5^2 = 25 Чому не працюють степені.Чому якщо, наприклад: 5^2 вивід є помилкою, а не 5^2=25 https://code.sololearn.com/cJ2zllc68ZoH/?ref=app
4 Answers
+ 3
Yes, but this character is used in the code only as an input. The problem is in the code, but thank you all the same.
+ 3
Thank you all for the feedback. Well, I've already fixed the error
Дякую усім за відгуки.Добре, що я уже виправив помилку
+ 1
yeah, this ^ sign is not use in programming for raise to power, they will probably be a function for that in CS or you can do a*a
+ 1
Depending on what language you are using, “^” may not necessarily represent exponentation. For instance, “**” in Python or the power function can be used for exponentation, but not “^.”