write a loop program to check and display all natural numbers from 11 to 100 which are not divisible by 7
please answer fast it urgent
If you can't please leave it
Answers
Answered by
2
Answer:
Using For loop
int i=11;
for(i=11;i<=100;i++){
if(i%7!=0){
printf("%d",i);
}
}
Using while loop
int i=11;
while(i>=11 && i<=100)
{
if(i%7!=0){
printf("%d",i);
i++;
}
}
Explanation:
Answered by
3
Answer:
OK
Explanation:
Hope it will help you plese follow me and mark me brilliant
Attachments:
![](https://hi-static.z-dn.net/files/db9/059b7b20ef63c9148492a7c8db0dc444.jpg)
Similar questions
English,
5 months ago
Business Studies,
5 months ago
Computer Science,
11 months ago
Math,
11 months ago
English,
1 year ago