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
0
Answer:
for(int i =100; i<=1000; i++)
{
if(i%2==0 && i%3 ==0)
{
printf("%d /t", i)
}
}
Explanation:
Similar questions