I have two parts to a diamond generator that I need to combine to make one program. the stipulations are that a user must enter the number of rows and the diamond must be made out of user inputted symbol such as $ or #.
that did help but there is some more issues i need to be able to ask the user what he wants the shape to be made of. the other issue is that if i enter 5 it comes out to 10 rows
You do already ask the user for the number of rows, so it should not be difficult to ask for a symbol; a character.
Your current output writes hardcoded two-character strings "* ". You would output the chosen symbol from variable and then a whitespace.
Number of rows is math. The user gives a total. Each part must do about half of total. "About", because odd and even total are perhaps a tiny bit different?