I'm trying to figure out
Converting from Fahrenheit to Celsius or the reverse over temperatures for several days
Just totally stuck
Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!
I'm trying to figure out
Converting from Fahrenheit to Celsius or the reverse over temperatures for several days
Just totally stuck
// scan list/file
FOR EACH DAY IN LIST
// reset values
dCelsius = 0
dFar = 0
dTemp = 0
GET dTemp
IF isCelsius
dFar = dTemp*1.8 + 32
PRINT dFar
// Fahrenheit
ELSE
dCelsius = (dTemp - 32)/1.8
PRINT dCelcius
ENDIF
ENDFOR
how do you use that for Visual Logic? not quite understanding
// reset values
dCelsius = 0
dFar = 0
dTemp = 0
Asign
GET dTemp
Input
IF isCelsius
COndition
etc
ok, all this did was confuse me, I am new to this and don't understand what any of that means, nor how to put that into visual logic as "// reset values" is not a visual logic term.
// are remarks, look at the statements underneath
0 members, 0 guests, 0 anonymous users
Community Forum Software by IP.Board
Licensed to: Geeks to Go, Inc.