Why Choose Us?
0% AI Guarantee
Human-written only.
24/7 Support
Anytime, anywhere.
Plagiarism Free
100% Original.
Expert Tutors
Masters & PhDs.
100% Confidential
Your privacy matters.
On-Time Delivery
Never miss a deadline.
I am having trouble creating a program in Visual Basic that prints the * in a diamond shape
I am having trouble creating a program in Visual Basic that prints the * in a diamond shape. Do you have any suggestions?
This is what I have so far. It is an un-proportioned diamond, I need a normal diamond. What am I doing wrong?
Dim i As Integer
Dim y As Integer
Dim j As Integer
For i = -9 To 9
y = System.Math.Abs(i)
y = (y * (-1)) + 10
Console.WriteLine("")
For j = 1 To y
Console.Write("*")
Next
i += 1
Next
Any help is greatly appreciated.
Expert Solution
------------------------------------------------------
Dim i As Integer
Dim y As Integer
Dim j As Integer
Dim s As Integer
For i = -9 To 9
y = System.Math.Abs(i)
y = (y * (-1)) + 10
Console.WriteLine("")
For s = 1 To (9 - y) / 2
Console.Write(" ")
Next
For j = 1 To y
Console.Write("*")
Next
i += 1
Next
----------------------------------------
Archived Solution
You have full access to this solution. To save a copy with all formatting and attachments, use the button below.
For ready-to-submit work, please order a fresh solution below.





