CLS INPUT"Enter any number";N C=0 FOR I=1 TO N IF N MOD I=O THEN C=C+1 NEXT I IF C=2 THEN PRINT"The given number is prime" ELSE PRINT"The given number is composite" END
CLS INPUT"Enter any number";N A=N S=0 WHILE N<>0 R=N MOD 10 S= S+R^3 N=N\10 WEND IF A=S THEN PRINT"The given number is armstrong" ELSE PRINT"The number is not armstrong" ENDIF END
CLS INPUT"Enter any number";N A=N S=0 WHILE N<>0 R=N MOD 10 S=S*10+R N=N\10 WEND IF A=S THEN PRINT"The given number is palindrome" ELSE PRINT"The given number is not palindrome" ENDIF END
CLS INPUT"Enter any number";A,B,C IF A>B and B>C THEN PRINT"The given number is";A ELSEIF B>A and B>C THEN PRINT"The greatest number is";B ELSE PRINT"The greatest number";C ENDIF END
CLS INPUT"Enter any number";N IF N>0 THEN PRINT"The number is positive" ELSEIF N<0 THEN PRINT"Given number is negative" ELSE PRINT"Given number is zero" ENDIF END