answersLogoWhite

0

cls

input "enter a no"; num

if num mod 14= num then

print "no is divisible"

else

print "not divisible"

end if

end

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Is 7 divisible to 104?

7 is not divisible by 104 and 104 is not divisible by 7.


Is 119 divisible by 7?

Not only is 119 divisible by 7 but it is evenly divisible by 7.


Is 208 divisible by 7?

No it is not divisible by 7


Program to print wvwn numbers from 1 to 100 in gw basic?

In GW-BASIC, you can print even numbers from 1 to 100 using a simple loop. Here’s a sample code: FOR i = 1 TO 100 IF i MOD 2 = 0 THEN PRINT i NEXT i This program iterates through numbers 1 to 100 and prints each number if it is even (i.e., divisible by 2).


What number is not divisible 7?

23 is not divisible by 7.


Is 7 divisible by 9?

no 7 is divisible by 14. :)


Is 7 divisible by 504?

No, but 504 is divisible by 7.


How do you Write a C program to print a Series of Odd Numbers and Even Numbers.?

Reference:http:cprogramming-bd.com/c_page2.aspx# strange number


Is 604 divisible by 7?

No, 604 can't be divisible by 7.


If a natural number is divisible by 7 then it is divisible by 14?

No, 7 is a natural number divisible by 7 and not 14 for example. In fact every odd multiple of 7 (i.e. 7 times 1,3,5,7,...) is divisible by 7 and not 14.


Is 46 divisible by 7?

all numbers are divisible by 7.


What is the result of this program REM A equals 5 end print ali let equals 7?

The program you've provided appears to be written in a BASIC-like syntax. The REM statement is a comment and does not affect the execution, so "A equals 5" is ignored. The print ali let equals 7 seems to be malformed; it should likely be split into separate statements for proper execution, such as PRINT ali and LET A = 7. As it stands, the program will likely result in a syntax error.