mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-09 13:54:34 +00:00
Jogo de adivinha qual número é maior #46
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @frankstylle on GitHub (May 30, 2020).
#include <stdio.h>
main (){
int num, num2, menor,maior;
printf("\n----------------------------------");
printf("\n| JOGO DO NÚMERO MAIOR OU MENOR |");
printf("\n----------------------------------");
printf("\n\nDigite o número 1: ");
scanf("%d",&num);
printf("\nDigite o número 2: ");
scanf("%d", &num2);
if (num > num2)
printf("\n\nNumero 1 é Maior que o Número 2");
return (0);
}
@EkanshMangal commented on GitHub (Jun 6, 2020):
Olá, posso resolver esse problema?
@frankstylle commented on GitHub (Oct 6, 2020):
Ok