program Primo;

PHOTO EMBED

Tue Aug 12 2025 16:00:41 GMT+0000 (Coordinated Universal Time)

Saved by @jrg_300i #php #laravel

program Primo;
var
  n, i: integer;
  esPrimo: boolean;
begin
  writeln('Ingrese un número:');
  readln(n);
  esPrimo := true;
  if n < 2 then
    esPrimo := false
  else
    for i := 2 to n div 2 do
      if n mod i = 0 then
      begin
        esPrimo := false;
        break;
      end;
  if esPrimo then
    writeln(n, ' es un número primo')
  else
    writeln(n, ' no es un número primo');
end.
content_copyCOPY