Computer Science, asked by richasingh10c2005052, 1 month ago

write a program to display sum of number which is divided by 2 and 3 both within the range of 100 to 1000.​

Answers

Answered by goyat03
0

Answer:

for(int i =100; i<=1000; i++)

{

if(i%2==0 && i%3 ==0)

{

printf("%d /t", i)

}

}

Explanation:

Similar questions