Find a given number – even or odd

>>Script Language and Platform: Oracle
Find a number that is even or odd.

Author: dawood



declare
a number:=&a;
begin
if(mod(a,2))=0
then
dbms_output.put_line(‘even’);
else
dbms_output.put_line(‘odd’);
end if;
end;



Disclaimer:
We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…

Disclaimer Continued

Back to Database Journal Home

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles