Menu

[solved] – Question 92621

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


Leave a Reply

Your email address will not be published. Required fields are marked *