- 1
It shows an error:You have not defined the floatT variable. WHAT SHOULD I DO
floatT floatS floatV print ('S=7425/1.609') print("V=550/1.609") print('T= S/V')
3 Antworten
+ 3
Language?
+ 2
Why not write it:
Float s = 7425/1.609
Float v = 550/1.609
Float t = s/v
Print(s)
Print(v)
Print(t)
See if that works (of course, you'll write it in the correct way, not exactly as above)