Underline the errors and then rewrite the following program correcting all the syntaxical errors:
a, b=0
if (a=b):
a+b=c
print c
Answers
Answered by
1
Answer:
1.a,b=0;
2.if (a==b)
3.System.out.println(c);
Explanation:
1.missing semicolon
2.assigning operators have two equal to signs
3.incorrect statement
hope this helps :) pls mark as brainliest answer!
Similar questions