0
Can someone tell me what is wrong here??
3 Answers
+ 3
Use == not = for comparision (line 17 and 19)
https://code.sololearn.com/cAO4zt3Vc7y7/?ref=app
+ 1
Hi Abigail,
you're assigning values instead of comparing them
if((dt=11)&&(dt<=20))
^^
Use == instead.
Regards, Ralf