Answer to Question #92621 in C++ for Shivaprasad
Fill in the blanks in the following program so that it will print the string "bbbaaaabbbaaaabbbaaaa".
repeat(__){
repeat(__){
cout << "b";
}
repeat(__){
cout << "aa";
}
}
1
2019-08-13T14:29:21-0400
ANSWER:
repeat(3){
repeat(3){
cout << "b";
}
repeat(2){
cout << "aa";
}
}
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!
Learn more about our help with Assignments:
C++
Comments
Leave a comment