Computer Science, asked by snigdhasen723, 1 month ago

wap to input a no and display as the factor of the no and also display the sum of the factor of the no​

Answers

Answered by gayatari8111
0

Answer:

CLS INPUT “ENTER ANY NUMBER”; N S = 0 FOR I = 1 TO N IF N MOD I = 0 THEN S = S + I NEXT I PRINT “SUM OF FACTORS=”; S END USING SUB ...

Explanation:

Similar questions