Problems hope someone can help
|
12-28-2024, 02:16 PM
Post: #1
|
|||
|
|||
Problems hope someone can help
Hello everyone
I got the Prime g2 for Christmas and am now trying to get it ready for my work. Now of course I have this stupid idea to create some programs that can calculate everything for me without much effort. Of course, since I don't know anything about programming, Chatgpt has helped me so far, but unfortunately it doesn't work that way with a program because I still get syntax errors after x attempts. Attached is the code: EXPORT margenRechner() BEGIN LOCAL bruttopreis, eigenrabatt, kundenrabatt, schlussrabatt, skonto, allgemeine_abzuege; LOCAL preis_nach_kundenrabatt, preis_nach_schlussrabatt, preis_nach_skonto, endpreis, effektiver_einkaufspreis, marge; // Eingabe der Werte bruttopreis := REQUEST("Gib den Bruttopreis ein: "); eigenrabatt := REQUEST("Gib den Eigenrabatt in Prozent ein: "); kundenrabatt := REQUEST("Gib den Kundenrabatt in Prozent ein: "); schlussrabatt := REQUEST("Gib den Schlussrabatt in Prozent ein: "); skonto := REQUEST("Gib den Skonto in Prozent ein: "); allgemeine_abzuege := REQUEST("Gib die allgemeinen Abzüge in Prozent ein: "); // Berechnung des effektiven Einkaufspreises nach Eigenrabatt effektiver_einkaufspreis := bruttopreis * (1 - eigenrabatt / 100); // Berechnung des Preises nach Kundenrabatt preis_nach_kundenrabatt := bruttopreis * (1 - kundenrabatt / 100); // Berechnung des Preises nach Schlussrabatt preis_nach_schlussrabatt := preis_nach_kundenrabatt * (1 - schlussrabatt / 100); // Berechnung des Preises nach Skonto preis_nach_skonto := preis_nach_schlussrabatt * (1 - skonto / 100); // Berechnung des Endpreises nach allen allgemeinen Abzügen (Prozent) endpreis := preis_nach_skonto * (1 - allgemeine_abzuege / 100); // Berechnung der Marge marge := (endpreis - effektiver_einkaufspreis) / endpreis * 100; // Ausgabe der Ergebnisse PRINT("Effektiver Einkaufspreis nach Eigenrabatt:" ;effektiver_einkaufspreis); PRINT("Preis nach Kundenrabatt:" ;preis_nach_kundenrabatt); PRINT("Preis nach Schlussrabatt:" ;preis_nach_schlussrabatt); PRINT("Preis nach Skonto:" ;preis_nach_skonto); PRINT("Endpreis nach allen Abzügen:" ;endpreis); PRINT("Die Marge beträgt: ", marge, " %"); END; Maybe someone can help me with the syntax error I've been getting with print lines: So now the next problem: The screen flickers especially when I'm not using the standard calculation. What could that be about? In the beginning it wasn't like that. |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Problems hope someone can help - Terra1988 - 12-28-2024 02:16 PM
RE: Problems hope someone can help - komame - 12-28-2024, 04:47 PM
|
User(s) browsing this thread: John Garza (3665), 2 Guest(s)