Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
why doesn't this code run
+3
votes
asked
Apr 30
by
thisstupidone
(
150
points)
program Project;
VAR
mo,gr,pr:real;
name:char;
begin
repeat
readIn(name,pr,gr);
mo:= ((pr+gr) / 2)
if (mo >= 10); then
begin
writeln ( Ο μαθητής Χ προβιβάζεται);
end
else
begin
writeln ( Ο μαθητής Χ πρέπει να επανεξεταστεί);
end;
readIn;
end.
-help-plz-
urgent
please-help
assignment
pascal_urgent_help_please
Your answer
Your name to display (optional):
Email me at this address if my answer is selected or commented on:
Email me if my answer is selected or commented on
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or register.
1 Answer
0
votes
answered
Jun 29
by
Chidera Chidubem-J
(
180
points)
Because of the char it is 'chr' not 'char' .
Your comment on this answer:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or register.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...