Computer Science, asked by nischal347, 4 months ago

WAP TO PRINT THE NUMBERS FROM 100 TO 1 USING FOR LOOP​

Answers

Answered by ahqsecret
0

Answer:

Pictorial Presentation:

Explanation:

Make me brainliest

Answered by saniyasayyed1522
0

Explanation:

#include <stdio.h>

int main() {

int x, i;

printf("Input an integer: ");

scanf("%d", &x);

for(i = 1; i <= 100; i++)

{

if((i%x) == 3) {

printf("%d\n", i);

}

}

return 0;

}

Similar questions