Write the while loop to print the series:
3,6,9,12,.......30
Answers
Answered by
1
Answer:
int =1;
while(n>=10)
{
cout<<n*3}
Explanation:
Similar questions