| 643 | |
| 644 | |
| 645 | void printPerRowIndent(string baseIndent, size_t row, string indentPerRow) { |
| 646 | |
| 647 | cout << baseIndent; |
| 648 | |
| 649 | // K. I. S. S. |
| 650 | for (size_t r=0; r<row; r++) |
| 651 | cout << indentPerRow; |
| 652 | } |
| 653 | |
| 654 | |
| 655 | void printRowInTwoQuadrants( |
no outgoing calls
no test coverage detected