Answer to Question #20541 in Visual Basic for lekan

Question #20541
Design a program that would allow a user to enter a resistor value in ohms and then provide the resistor colour code for the given value.
1
Expert's answer
2012-12-12T08:24:57-0500
Module Module1

Sub Main()
Dim colors() As String = {"BLACK", "BROWN",
"RED", "ORANGE", "YELLOW", "GREEN",
"BLUE", "PURPLE", "GRAY", "WHITE"}

Dim resistorvalue As Integer
Console.Write("Enter a resistor value: ")
resistorvalue = Integer.Parse(Console.ReadLine())
If resistorvalue.ToString().Length = 1 Then
Console.Write(colors(Integer.Parse(resistorvalue.ToString()(0))) + "
" + colors(0) + " " + colors(0))
End If
If resistorvalue.ToString().Length = 2 Then
Console.Write(colors(Integer.Parse(resistorvalue.ToString()(0))) + "
" + colors(Integer.Parse(resistorvalue.ToString()(1))) + " " +
colors(0))
End If

If resistorvalue.ToString().Length = 3 Then
Console.Write(colors(Integer.Parse(resistorvalue.ToString()(0))) + "
" + colors(Integer.Parse(resistorvalue.ToString()(1))) + " " +
colors(Integer.Parse(resistorvalue.ToString()(2))))
End If
Console.ReadLine()

End Sub


End Module

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS