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