Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/COBOL/verschiedene-Autoren/Hoffmann/   (Columbo Version 0.7©)  Datei vom 28.0.2009 mit Größe 874 B image not shown  

Quelle  pow-fast.cob   Sprache: Cobol

 
       identification division.
       program-id. pow-fast.
      * aus Dirk Hoffmann,
      * Software-Qualität
      * p339, Springer 2008
       author"JD".
       date-written. 28.1.2009.
       date-compiled.
       data division.
       working-storage section.
        77 k pic 9(4).
        77 p pic 9(16).
        linkage section.
        77 a   pic 9(4).
        77 n   pic 9(4).
        77 y   pic 9(16).
       procedure division using a n returning y.
      * computes r = i to the power of n
         move n to k
         move a to p
         move 1 to y
         perform until k <= 0
           if function mod(k,2)=0 then
             multiply p by p
             divide 2 into k
           else
             multiply p by y
             subtract 1 from k
           end-if
         end-perform.
        end program pow-fast.

Messung V0.5
C=93 H=99 G=95

¤ Dauer der Verarbeitung: 0.12 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.