본문 바로가기
C 언어 프로그래밍/간단한 게임

[C언어] 행운의 숫자 맞추기 게임

by 프밍샘 2020. 7. 23.

랜덤 함수를 이용한 행운의 숫자 맞추기 게임입니다.

 

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main()
{
	int i=1, num, res, random;
	
	srand(time(NULL));
	random=rand()%10; 
	
	printf("행운의 숫자를 맞춰보세요!!!\n"); 
	
	do{
		printf("%d round:", i), scanf("%d", &num);
		
		if(num==random) 
		{
			printf("맞췄습니다!!!\n");
			printf("당신은 럭키 가이!!!\n");
			res=0;
		}
		
		else if(i==5)
		{
			printf("다시 도전 합시다!!\n");
			res=0;
		}
		
		else
		{
			printf("아닙니다!!\n");
			res=1;
		}
		
		i++;
		
	}while(res==1);	
    
	return 0;
}

 

 

'C 언어 프로그래밍 > 간단한 게임' 카테고리의 다른 글

로또 번호 생성기  (0) 2020.06.25

댓글