rewrite the following program after finding and correcting syntactical errors and underlining
a, b=0
if(a =b)
a+b=c
print z
Answers
Answered by
1
Answer:
Java,
int a=0, b=0;
if(a==b)
int c= a+b;
sopln(c) ;
Similar questions