Write a program to print the following series 3 6 9 12 15 till 19 terms
Answers
Answered by
0
Answer:
int main()
{
for(int index=1;index<=19;index++)
{
printf("%d ",3*i);
}
}
Explanation:
print the multiples of 3 from 1 to 19 like 1*3,2*3,3*3...19*3
Answered by
0
Answer:
3 6 9 12 15 17 19 22 25 28 32 35 38 41
Similar questions
Math,
4 months ago
CBSE BOARD X,
4 months ago
English,
8 months ago
Chemistry,
1 year ago
Math,
1 year ago