AP Computer Science A Question of the Day
Test your knowledge with a hand-picked multiple-choice question.
What is wrong with the following code?
- int main()
- {
- bool logic;
- double sum=0;
- for(j=0;j<3;j++)
- {
- sum=sum+j;
- }
- if (sum>10)
- {
- logic=1;
- }
- else
- {
- logic=0;
- }
- }
- }
Select an answer and click Check.