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.

closed i keep getting the command line error please help me im trying to learn

+1 vote
asked Sep 19, 2019 by Jemund Burke (170 points)
closed Sep 19, 2019 by Admin
program Test;
var N1, N2, N3, Sum:integer;

begin write ('please enter the first number');
readln (N1);
write ('please enter the first number');
readln (N2);
write ('please enter the third number');
readln (N3);
Sum:= N1 + N2 + N3;
write ('you carefully calculated answer', Sum);

end
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.
...