dim TilePrice() as decimal = {19.50,25.95,35.75,12.50,11.00,52.95,65.00,58.98,85.00,62.75}
dim TileDescription() as string = {"Small black granite ","Small grey marble ","Small powder blue ","Medium sunset yellow ","Medium berry red ","Medium glitter purple ","Large oak wood effect ","Large black granite ","Large bamboo effect ","Extra-large white marble"}
dim TileID() as string = {"SBG","SGM","SPB","MSY","MBR","MGP","LOW","LBG","LBR","LWM"}
dim wallHeight as integer
dim totalPrice as decimal
dim extraPercent as decimal
console.WriteLine("Tile ID: " & TileID(i) & " | " & "Tile Description: " & TileDescription(i) & " | " & "Tile Price: " & TilePrice(i))
console.WriteLine("Please input the height of your wall: ")
wallHeight = console.ReadLine()
if wallHeight < 0 or wallHeight > 100
console.WriteLine("Invalid Input")
console.WriteLine("Please input the width of your wall: ")
wallWidth = console.ReadLine()
if wallWidth < 0 or wallWidth > 100
console.WriteLine("Invalid Input")
console.WriteLine("Please input the ID of your Tile: ")
Select case console.ReadLine()
console.WriteLine("How many walls would you like to tile?")
wallCount = console.ReadLine()
wallArea = wallWidth * wallHeight * wallCount
console.Write("Add an extra percent to account for wastage(Put 0 for none extra)")
extrapercent = console.readline() + 1
totalPrice = wallArea * TilePrice(choosenID) * extrapercent