给定以下C++代码:
int tnt = 0; for (int i = 0; i > -10; i--) { if (i < 0) i = -i; tnt += i; } cout << tnt;
正确
错误