Posts

Showing posts from June, 2018

Qbasic

                                                                              SAVAGE                                        1)WAP to input number and check whether the given no.is divisible by 3 and 7 or not. cls Input "enter any number";n if n mod 3=0 and n mod 7=0 print "number is divisible by 3 and 7" ELSE PRINT "NUMBER IS NOT DIVISIBLE BY 3 AND 7" END IF END 2)WAP to input any number an...