• Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Fatal: Syntax error, ";" expected but "UNTIL" found

Pres

New Coder
ive changed all the untils possible to ; and still doesnt work

Code:
Program CheckoutCounter;



var

customerID: integer;

loyaltyPoints, finalPrice, loyaltyPointsEarned, totalLoyaltyPoints, discount, itemPrice: real;



begin

writeln('Enter customer ID:');

readln(customerID);

writeln('Enter loyalty points:');

readln(loyaltyPoints);



finalPrice := 0;

repeat

writeln('Enter price of next item (enter -1 to stop):');

readln(itemPrice);



if itemPrice <> -1 then

begin

finalPrice := finalPrice + itemPrice;

end;

until itemPrice = -1;



loyaltyPointsEarned := finalPrice * 0.2;



totalLoyaltyPoints := loyaltyPoints + loyaltyPointsEarned;



if finalPrice > 1500 then

begin

discount := finalPrice * 0.1;

end

else

begin

discount := 0;

end;



discountedFinalPrice := finalPrice - discount;



writeln('Customer ID: ', customerID);

writeln('Loyalty points earned in this transaction: ', loyaltyPointsEarned:0:2);

writeln('Total amount of loyalty points: ', totalLoyaltyPoints:0:2);

writeln('Bill before discount: ', finalPrice:0:2);

writeln('Discount given: ', discount:0:2);

writeln('Final bill: ', discountedFinalPrice:0:2);

end.
 
ive changed all the untils possible to ; and still doesnt work
Would you take the trouble to properly explain your problem please, instead of just dumping your code with a totally incomprehensible one-liner ? Details, information, you know, that boring stuff ....
 

New Threads

Latest posts

Buy us a coffee!

300x250
Top Bottom