| 5 | #include <iostream> |
| 6 | using namespace std; |
| 7 | int main() |
| 8 | { |
| 9 | for (int i = 1; i <= 5; i++) |
| 10 | { |
| 11 | for (int j = 1; j <= i; j++) |
| 12 | { |
| 13 | cout << "*"; |
| 14 | } |
| 15 | cout << endl; |
| 16 | } |
| 17 | system("pause"); |
| 18 | return 0; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected