Hi I make an incubator and this is the code.
However tit keeps flashing that there is an error. I am so tired and cant understand what is wrong.
Can anyone run the code and tell me what is the error and correct it?
Thank you in advance!!!
You have unbalanced braces. In the c3 function you need a closing brace for the body of code after the "if else". In c6, you have an extra brace after "change = 1". In c1thermo you have an extra brace at the end, and you have a few extra braces at the end of the file.
No, you have not balanced your braces yet. Your function c1tho() has 6 opening and 5 closing braces. you need to go through all of your code and make certain that the braces balance in each function.
By the way, when I added a closing brace to the end of the function, c1tho(), the code compiled without errors.
Comments
By the way, when I added a closing brace to the end of the function, c1tho(), the code compiled without errors.