Computer Science, asked by unknowngaming166, 12 hours ago

Write and execute a C program to generate numbers between 1 and 100 which are divisible by 2 and are not divisible by 3 and 5.
[[[Any one tell algorithm for this program]]]

Answers

Answered by akshatkumarkanth22
0

Answer:

/*Write a C program to generate numbers between 20 and 100 which are

divisible by 2 and not divisible by 3 and 5*/

#include<stdio.h>

int main()

{

int i,n;

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

{

n=i;

if((n%2==0)&&(n%3!=0)&&(n%5!=0))

{

printf("\n the values are %d",n);

}

}

return 0;

}

Similar questions