Informática, perguntado por alcielepaulaAlciele, 1 ano atrás

Escreva um programa que leia um número inteiro e mostre uma mensagem indicando se este número é
par ou ímpar, e se é positivo, negativo ou nulo(0).

Soluções para a tarefa

Respondido por LeeoSouza
0
em pascal

var
num: integer;
tipo1, tipo2: string;

begin
writeln('entre com o numero');
readln(num)
if num > 0
begin
tipo1 := 'positivo'
else if
 num < 0 then
tipo1 := 'negativo'
else tipo1:= 'zero';
end

if num mod 2 = 0 then
tipo2 := 'par'
else
tipo := 'impar';
writeln(nume, 'é', tipo1, 'e', tipo2);
readln
end.
Respondido por laluhgenious
0

Resposta:

Em C

................................

int main() {

   long int N;

   scanf("%ld", &N);

   

   if(N == 0)

         printf("NULO\n");

   else

      if(N<0)

          if(N%2==0)

             printf("NEGATIVO PAR\n");

          else

             printf("NEGATIVO IMPAR\n");

      else

          if(N%2==0)

             printf("POSITIVO PAR\n");

          else

             printf("POSITIVO IMPAR\n");

return 0;

}

Perguntas interessantes