HW8_3
Write an ISO/ANSI C++ console program which keeps on asking you to
input a positive integer N. The program will use character "*"
to output a diamond with radius N. The program will repeat the above
actions until you supply a non-positive N. See the example below.
N = ? 3
*
***
*****
***
*
N = ? 7
*
***
*****
*******
*********
***********
*************
***********
*********
*******
*****
***
*
N = ? 0
Press any key to continue . . .