Skip to main content

PL/SQl Program to check a number is even or not


---------Prog 7 ----------------------
declare
i number(2);
j number(2);
begin
  for i in 1 .. 100 loop
    if(mod(i,2)=0) then
    dbms_output.put_line('number is Even :' || i);
    else
    dbms_output.put_line('number is Odd :' || i);
    end if;
    end loop;
end;

Comments

Popular posts from this blog

Pl/SQL program to find square of a user input number Using Function

declare   value1 number;   value2 number;   mytotal number;   function myfun(myval1 in number, myval2 in number) return number is     total number;   begin     total := myval1 ** myval2;     dbms_output.put_line(total);     return total;   end; begin   value1 :=&val1;   value2 := &val2;  mytotal:= myfun(value1, value2); end;