Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*==============================================================================
- _ ____ _____ __ __
- (_) _ \ ___ |_ _|__ __ _| \/ |
- | | |_) / __| | |/ _ \/ _` | |\/| |
- | | __/\__ \ | | __/ (_| | | | |
- |_|_| |___/ |_|\___|\__,_|_| |_|
- ==============================================================================*/
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <conio.h>
- int main()
- {
- //Enfeites
- system("title [iPs TeaM] - Campeonato Programadores - Projeto Bruno da Silva");
- system("color 8f");
- printf("Digite seu numero de 0 a 10 para tentar adivinhar: \n\n");
- //Pegar número
- int escolhido = 0;
- scanf("%d", &escolhido);
- if(escolhido < 0 || escolhido > 10)
- {
- printf("Erro, deve escolher um numero entre 0 e 10 \n\n");
- return system("pause");
- }
- // Checar
- srand (time(NULL));
- int random = (rand() % 10);
- if(escolhido == random)
- {
- printf("Parabens você conseguiu acertar o numero! \n\n");
- }
- else
- {
- printf("\n\n Voce errou, o numero era: %d \n\n", random);
- }
- return system("pause");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement