ModuleModule1constspace =" "dimnumberofspace as integerdimnumberofsymbol as integerdimmaxnumberofsymbols as integerdimthissymbol as charsubinputmaxnumberofsymbols(byref number as integer)doconsole.writeline("howmany symbols make this bases?")console.write("inputan odd number:")loopuntil (number mod 2 = 1)endsubsubsetvalues(byref symbol, byref maxsymbols, byref spaces, byref symbols)console.write("whatsymbol do you want to use?")symbol = console.readline()inputmaxnumberofsymbols(maxsymbols)spaces = (maxsymbols+1)\2symbols = 1endsubsuboutputchars(byval number, byval symbol)dimcount as integerforcount = 1 to numberconsole.write(symbol)nextendsubsubadjustvaluesfornextrow(byref space, byref symbols)spaces = spaces -1symbol = symbol + 2endsubSubMain()setvalues(thissymbol,maxnumberofsymbols,numberofspace,numberofsymbols)EndSubEndModule