write a looping program to find the series of 100,80,60,40,20
Answers
Answered by
1
Answer:
subtract the number from 20 u will get the answer..
hope it will help u..
remember to make it as brainlist answer..
Answered by
0
Answer:
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i;
for(i=100;i>=20;i=i-20)
{
cout<<i<<","<<"\n";
}
getch();
}
Similar questions