Write a program in QBASIC to find out the year is leap year or not
Answers
Answered by
0
Answer:
Input "enter days in the year?", days
If days = 365 then
print "non-leap year"
Else print "leap year"
End if
End
Similar questions