Write a program to print odd multiples of 3 from 3 to 50
Answers
Answered by
0
Answer:
#include <stdio.h >
int main ()
{
int i, n;
scanf("%d", &n) ;
for (i=3;i<=50;i++)
{
if(n%i==1)
printf("%d", n) ;
}
return 0;
}
Similar questions