WAP TO PRINT THE NUMBERS FROM 100 TO 1 USING FOR LOOP
Answers
Answered by
0
Answer:
Pictorial Presentation:
Explanation:
Make me brainliest
Answered by
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