A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Prime Number in Pascal page! Here, you'll find the source code for this program as well as a description of how the program works.
program prime_check(input, output, stdErr);
(* Read a number from Commandline, Check if it is Prime or Composite*)
var
buf: String;
(* prime, factorial, check:Cardinal;*)
i, max_divisor, check, flag: integer;
prime: Cardinal;
begin
buf:= paramStr(1);
Val(buf, prime, check);
if check <> 0
then
writeln('Usage: please input a non-negative integer')
else
if prime < 0
then
writeln('Usage: please input a non-negative integer')
else
begin
if (prime = 2) then
writeln('Prime')
else
if ((prime = 0) or (prime = 1) )
then
writeln('Composite')
else
if (prime mod 2 = 0)
then
writeln('Composite')
else
begin
flag := 0;
max_divisor := round(prime / 2);
for i := 3 to max_divisor do
begin
if ( prime mod i = 0 )
then
flag := 1;
break;
end;
if (flag = 0)
then
writeln('Prime')
else
writeln('Composite')
end;
end
end.
Prime Number in Pascal was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.