Computer Science, asked by chhavisaxena1976, 4 months ago

A. Rewrite the following statements after correcting them:
1. a=100
b=20
if (a>b)
print(a)
else
print(b)​

Answers

Answered by lavanya3602
2

Answer:

I'm writing in c language.

a = 100;

b = 20;

if(a>b)

print(a);

else

print(b);

Similar questions