Hi everyone,plz i need help from anyone to check if this program is writthen correctly

{

    A program to read two values A and B and print the highets value

}

Val A

:

integer

;

Val B:integer

;

Begin A

:

 =10

;


   B:=12

;


   if A

>

     B then
   begin
   writeln 

(



'

   A is highest value

'



)


   end;
   if B

>

  A then
   writeln 

(



'

   B is highest value

'



)

End

.

too much spacing in there here is some c++ pseudo code to help you out
int res = (a>b)? a:b;
cout << rest << endl;

tanx bt its a pascal program...so is the c++ code applicable?? bcz i dnt knw abt c++

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.