- 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')

5th Aug 2022, 10:25 AM
Siyam Waheed
Siyam Waheed - avatar
3 Antworten
+ 3
Language?
5th Aug 2022, 12:48 PM
A͢J
A͢J - avatar
+ 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)
5th Aug 2022, 3:35 PM
Ausgrindtube
Ausgrindtube - avatar