Computer Science, asked by manaswinithota12, 10 months ago

Write a Program to find biggest among two numbers in PL/SQL ?​

Answers

Answered by mindfulmaisel
5

Biggest among two numbers in PL/SQL:

Answer:

DECLARE

   N NUMBER;

   M NUMBER;

BEGIN

  DBMS_OUTPUT.PUT_LINE('ENTER A NUMBER');

  N:=&NUMBER;    

  DBMS_OUTPUT.PUT_LINE('ENTER A NUMBER');

  M:=&NUMBER;

IF N<M THEN

 DBMS_OUTPUT.PUT_LINE(''|| N ||' IS GREATER THAN '|| M ||'');

ELSE

 DBMS_OUTPUT.PUT_LINE(''|| M ||' IS GREATER THAN '|| N ||'');

END IF;

END;

TO KNOW MORE ABOUT:

1.Write a  java program to input two real numbers  and find the difference between the two numbers.​

https://brainly.in/question/15639967

2.Write steps to print Handouts/Notes page of a Presentation​

https://brainly.in/question/15433154

Answered by yashpatidar12122004
1

Answer:

write a command for display grades

Similar questions