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

como traduzir ou converter da linguagem c para c++ o código abaixo;
#include

main(void) {
int a, b, c, d;

printf("Informe o primeiro valor: ");
scanf("%d", &a);

printf("Informe o segundo valor.: ");
scanf("%d", &b);

printf("Informe o terceiro valor: ");
scanf("%d", &c);

printf("Informe o quarto valor: ");
scanf("%d", &d);

if (((a % 2) == 0) && ((a % 3) == 0))
printf("\n%d e divisivel por 2 e 3.", a);

if (((b % 2) == 0) && ((b % 3) == 0))
printf("\n%d e divisivel por 2 e 3.", b);

if (((c % 2) == 0) && ((c % 3) == 0))
printf("\n%d e divisivel por 2 e 3.", c);

if (((d % 2) == 0) && ((d % 3) == 0))
printf("\n%d e divisivel por 2 e 3.", d);
}

Soluções para a tarefa

Respondido por samueldvn
0
Não precisa, a linguagem c++ suporta as funções da linguagem c. Neste código aí está faltando o
#include <stdio.h>
Perguntas interessantes