Computer Science, asked by rutujakavita9112, 6 months ago

Write the while loop to print the series:
3,6,9,12,.......30

Answers

Answered by rimisharauniyar22
1

Answer:

int =1;

while(n>=10)

{

cout<<n*3}

Explanation:

Similar questions