Write a program to print even numbers from 88-34.(using loop)
Urgent
Answers
Answered by
0
Answer:
for(i=34;i>=88;i++)
{
cout<<i%2;
}
Explanation:
here we can use for loop it will start from 34 to 88 and to know weather it is even or not we use i%2.
Similar questions