products/Sources/formale Sprachen/C/LibreOffice/external/curl/   (Openclaw AI Version 22©)  Datei vom 5.10.2025 mit Größe 428 B image not shown  

Quelle  calculate.cob   Sprache: unbekannt

 
       identification division.
       program-id. calculate.
      *-------------------------------- 
      * aus Spillner /Linz S.41
      * Berechnung eines Gesamtpreises 
      *-------------------------------- 
       author"JD".
       date-written2.12.2005.
       date-compiled.
       data division.
       working-storage section.
       77 addon-discount pic 9(8)V99.
       77 result         pic 9(8)V99.
       linkage section.
      * Grundpreis des Fahrzeuges  
       77 baseprice      pic 9(8)V99.
      * Sondermodellaufschlag 
       77 specialprice   pic 9(8)V99.
      * Preis der Zusatzausstattung 
       77 extraprice     pic 9(8)V99.
      * Anzahl der Zusatzausstattungen 
       77 extras         pic 9(4)V99.
      * Händlerrabatt 
       77 discount       pic 9(8)V99.
       procedure division using baseprice,
                                specialprice,
                                extraprice,
                                extras,
                                discount.
      * ermittle den Gesamtpreis 
         if      extras >= 3 then move 10   to addon-discount
         else if extras >= 5 then move 15   to addon-discount
         else                     move 0    to addon-discount.
         
         if discount > addon-discount then
           move discount to addon-discount.
           
         compute result =
             baseprice / 100 * (100 - discount)
           + specialprice
           + extraprice/100*(100 - addon-discount).
         
         display "Gesamtpreis des Fahrzeuges ="result.
         
        end-program calculate.

Messung V0.5 in Prozent
C=78 H=100 G=89

[zur Elbe Produktseite wechseln0.2QuellennavigatorsAnalyse erneut starten2026-06-15]