Re: OT: Converting miles/km

Liste des GroupesRevenir à lang 
Sujet : Re: OT: Converting miles/km
De : ram (at) *nospam* zedat.fu-berlin.de (Stefan Ram)
Groupes : sci.lang alt.usage.english
Date : 20. Sep 2024, 17:37:43
Autres entêtes
Organisation : Stefan Ram
Message-ID : <CONVERTER-20240920163619@ram.dialup.fu-berlin.de>
References : 1 2 3 4
Phil <phil@anonymous.invalid> wrote or quoted:
I'm not sure how common this is, but the speedometer in my car has
scales for both mph and km/h, so in principle I don't need to convert.

  These days, even regular folks can afford small computers at home,
  and with a BASIC interpreter, anyone can whip up his own conversion
  program. The programming language BASIC is so simple that anyone
  can pick it up. It can handle math terms straight out of the box.

  MILES.BAS

10 PRINT "MILES TO KILOMETERS CONVERTER"
20 PRINT "-----------------------------"
30 INPUT "ENTER MILES: "; M
40 K = M * 1.60934
50 PRINT M; "MILES ="; K; "KILOMETERS"
60 END

  TRANSCRIPT

MILES TO KILOMETERS CONVERTER
-----------------------------
ENTER MILES: ? 2

 2 MILES = 3.21868 KILOMETERS



Date Sujet#  Auteur
20 Sep01:12 * OT: Converting miles/km22Christian Weisgerber
20 Sep07:07 +* Re: OT: Converting miles/km2Aidan Kehoe
20 Sep19:43 i`- Re: OT: Converting miles/km1Garrett Wollman
20 Sep07:22 +* Re: OT: Converting miles/km4Hibou
20 Sep08:26 i+- Re: OT: Converting miles/km1Hibou
20 Sep10:00 i`* Re: OT: Converting miles/km2Peter Moylan
20 Sep10:43 i `- Re: OT: Converting miles/km1Hibou
20 Sep07:51 +* Re: OT: Converting miles/km7occam
20 Sep10:54 i+* Re: OT: Converting miles/km5Bertel Lund Hansen
20 Sep11:09 ii+- Re: OT: Converting miles/km1Hibou
20 Sep11:46 ii`* Re: OT: Converting miles/km3occam
20 Sep12:06 ii +- Re: OT: Converting miles/km1Bertel Lund Hansen
20 Sep12:51 ii `- Re: OT: Converting miles/km1Peter Moylan
20 Sep13:52 i`- Re: OT: Converting miles/km1Christian Weisgerber
20 Sep11:30 +* Re: OT: Converting miles/km7Helmut Richter
20 Sep12:10 i+* Re: OT: Converting miles/km5Bertel Lund Hansen
20 Sep12:40 ii`* Re: OT: Converting miles/km4Phil
20 Sep15:51 ii +* Re: OT: Converting miles/km2Silvano
20 Sep19:11 ii i`- Re: OT: Converting miles/km1Bertel Lund Hansen
20 Sep17:37 ii `- Re: OT: Converting miles/km1Stefan Ram
20 Sep12:55 i`- Re: OT: Converting miles/km1Peter Moylan
20 Sep15:50 `- Re: OT: Converting miles/km1jerryfriedman

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal