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