#include <stdio.h>
#include <conio.h>
int main()
{
int a,k,t;
printf("Insert limited number="); scanf("%d",&t);
printf("Insert number="); scanf("%d",&a);
do{
k = a*2; a++;
printf("multiple = %d\n",k);
k = k+2; a++;
printf("multiple = %d\n",k);
}
while(k!=t);
getch();
return 0;
}
i wanna add search multiple with number 3,5 with the same limited number, can someone help me o:)