Answer to Question #17283 in C++ for Ian Malven

Question #17283
Complete the segment code below so that the output generated is as follows:
3 6 9 12 15 18 21 24 27 30

i = 1;
while (..............) {
printf(............);
.............;
}
my question is actually a C language one but the C option under category pull down menu is not running
1
Expert's answer
2012-10-25T11:48:30-0400
i = 1;


i = 3;

while (i <= 30){

printf("%i",i);

i+=3;

}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS