0
setlocale(LC_ALL,"Portuguese");
int num1,num2;
printf("\nInforme os números: ");
scanf ("%i""%i",&num1,&num2);
if (num1 % 2 == 0){
printf ("\nO número %i é par e",num1);
}else {
printf("\nO número %i é impar e",num1);
}
if (num1>num2){
printf (" é o número é o maior");
}else {
printf(" é o número é o menor");
}
if (num2 % 2 == 0){
printf ("\nO número %i é par e",num2);
}else {
printf("\nO número %i é impar e"),num2;
}
if (num2>num1){
printf (" é o número é o maior");
}else {
printf(" é o número é o menor");
}
When I put 2 and 3 of an error in 3 and it shows several random numbers but the result is correct, already when I put 4 and 6 it says that 4 is even, could tell me what I’m doing wrong ?
Hello, Luan. Avoid tagging with C++ problems in C. They are two very different languages. Also avoid using images to describe your problem. The use of images makes it difficult to search and makes it impossible for users of screen readers to read. Do our [tour] to get better acquainted with the site if you haven’t done.
– Pablo Almeida
Thank you for your knowledge master, the young padawan here received you and will practice you !
– Luan Nunes