Computer Science, asked by anushreep5893, 10 months ago

Write a c program to print and count all numbers between 1 to 100 divisible by 11

Answers

Answered by doubtgod
0

Answer:

REM

CLS

FOR X= 1 TO 100

Y= 11/X

PRINT Y

NEXT X

Explanation:

Similar questions