[solved] – Question 92651
Fill in the blanks in the following program so that it will print the string “bbbaaaabbbaaaabbbaaaa”.
repeat(__){
repeat(__){
cout << “b”;
}
repeat(__){
cout << “aa”;
}
}
Expert Answer
OR
Fill in the blanks in the following program so that it will print the string “bbbaaaabbbaaaabbbaaaa”.
repeat(__){
repeat(__){
cout << “b”;
}
repeat(__){
cout << “aa”;
}
}
OR