5 , 10 , 15 , 20 , ... , 100
#include <iostream.h>
#include <conio.h>
main()
{
int i;
for(i=5;i<=100;i+=5)
cout<<i<<endl;
getch();
}