Recent Feedback
Designa program that displays a table of the centigrade tmperatures 0 through 20 and their Farhrenheit equivalents. The fomula for converting a temperature from centigrade to fahrenheit is f=9/5 C+32 where Fis ther farenheit temperature and C is the centigrade temperature. Your program must use a loop to display the table Pseudo code please
HiCustomerThank you for the question. I am working on this now and will get back to you shortly with the solution. Thank you,
HiCustomerHere is the code I have come up with for this:Sub showTempinteger ii = 0Do Until i = 21Debug.Print i & " Degrees = " & ((9 / 5 * i) + 32) & " Fahrenheit" & vbCrLf i = i + 1LoopEnd Sub
Experience: Years of professional experience in C++, Visual Basic, .NET, Java, DB2, Oracle, SQL Server, PL/SQL