Show the printout of the following code:
```
#include
using namespace std;
int main()
{
int i = 1;
while (i <= 4)
{
int num = 1;
for (int j = 1; j <= i; j++)
{
cout << num << "bb";
num *= 3;
}
cout << endl;
i++;
}
}
```
You might also like to view...
The shape of a binary search tree is
A) always triangular. B) always balanced. C) determined by the programmer. D) determined by the order in which values are inserted. E) None of the above
Unless it is told otherwise, the operating system searches for files starting with your __________ directory.
a. working b. root c. home d. there is no default
After a document has been marked as final, [Final] will display in the title bar after the file name
Indicate whether the statement is true or false
Most computer historians agree that computers have evolved through _______ distinct generations.
A. three B. four C. five D. six