Write a Program to find biggest among two numbers in PL/SQL ?
Answers
Answered by
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
1
Answer:
write a command for display grades
Similar questions