hi
is there anyone who can help me to create a game program in pascal
hoping that one of you can help me please
even a simple calculator coz i really dont know how to create

Recommended Answers

All 4 Replies

It is a really simple calculator :)

program simple_calculator;
uses crt;
var a,b,result:real;
    m:set of char;
    choice:char;
begin
     clrscr;
     m:=[];
     include(m,'+');
     include(m,'-');
     include(m,'*');
     include(m,'/');
     repeat
           write('num1: ');
           readln(a);
           write('num2: ');
           readln(b);
           write('operator: + - * /  : ');
           readln(choice);
           case choice of
                '+':result:=a+b;
                '-':result:=a-b;
                '*':result:=a*b;
                '/':result:=a/b;
           end;
     until choice in m;
     writeln;
     writeln(a:0:0,choice,b:0:0,'=',result:0:2);

     while not keypressed do continue;
end.

(*created by FlamingClaw 2010.02.02.*)

npt work in pascal dev 1.9.2

Thanks alot!

you have got one good code above and if you want you will get more from google, i just tried now. Please check in google

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.