Custom Search

Wednesday 30 November 2011

Write a PL/SQL block to find the maximum number from given three numbers, PL/SQL Program to find the maximum number from given three numbers


Write a PL/SQL block to find the maximum number from given three numbers, PL/SQL Program to find the maximum number from given three numbers

declare

a number;

b number;

c number;

begin

a:=&a;

b:=&b;

c:=&c;


if (a>b and a>c) then

dbms_output.put_line('a is maximum ' || a);

elsif (b>a and b>c) then

dbms_output.put_line('b is maximum ' || b);

else

dbms_output.put_line('c is maximum ' || c);

end if;

end;

No comments:

Post a Comment

Laptops