syntax error, error in :'mit 10000', expect LITERAL_INT, actual LITERAL_INT pos 292, line 5, column 15, token LITERAL_INT
时间: 2024-05-29 19:10:29 浏览: 136
Syntax Error
This error message is indicating that there is a syntax error in the code at line 5, column 15. Specifically, the error is related to the use of the value "mit 10000" which is not a valid integer value. The compiler is expecting an integer value (LITERAL_INT) but encountered "mit 10000" instead, which is causing the error.
To fix this error, you should replace "mit 10000" with a valid integer value. For example, you could replace it with "10000" if that is the intended value.
阅读全文