Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/Cobol/verschiedene-Autoren/Wirth/   (Columbo Version 0.7©)  Datei vom 4.1.2008 mit Größe 1 kB image not shown  

Quelle  convert.cob   Sprache: Cobol

 
       identification division.
       program-id. convert.
      *  aus Wirth, systematisches Programmieren p. 102/ p. 103 ??? 
       author"JD".
       date-written. 11.9.2005.
       date-compiled.
       data division.
       working-storage section.
       77 h   pic 9(4).
       linkage section.
       77 m pic 9(4)V9(4).
       77 b pic 9(4).
       77 d pic 9(4).
       procedure division using m b d.
      * converts reals to strings
         move 0 to d
         if b >= 0 then
           perform until b not = 0
      *  b>=0 &&   x = m * 2**b * 10**d   0.1 <= m < 1     
             multiply 2 by m
             subtract 1 from b
             if m >= 1 then
               divide 10 into m
               add 1 to d
             end-if
           end-perform
         else
           perform until b = 0
      *  b<0 &&  x = m * 2**b * 10**d   0.1 <= m < 1     
             divide 2 into m
             add 1 to b
             if m < 0.1 then
               multiply 10 by m
               subtract 1 from d
             end-if 
           end-perform
         end-if
      * now m ist the result
        end-program convert.

Messung V0.5
C=88 H=100 G=94

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.