Variable Declaration Misery: A Buggy Iterations Page
Oh no, your variable declarations are a mess!
Here's a list of all the variables you declared, but didn't initialize:
- int x = 5;
- float y = 3.14;
- bool z = true;
It looks like you've got some bugs to squash!
int x = 5; // undefined value float y = 3.14; // float value bool z = true; // true value
Try to fix it by initializing these variables, and then fix the mess!