[C language]-Guess the number game source code + print results

void Menu()
{
    
    


	printf("*********************************\n");
	printf("****** 1.plat        0.exit *****\n");
	printf("*********************************\n");

}

void Game()
{
    
    
	int x;
	int num;
	x = rand() % 100;
	while (1)
	{
    
    
		printf("请输入一个数:");
		scanf("%d", &num);
		if (num > x)
		{
    
    
			printf("猜大了!\n");
		}
		else if (num < x)
		{
    
    
			printf("猜小了!\n");
		}
		else
		{
    
    
			printf("恭喜,猜对了!\n");
			return 0;
		}

	}

}

int main()
{
    
    

	srand((unsigned long)time(NULL));
	int select;
	while (1)
	{
    
    
		Menu();
		printf("请选择:");
		scanf("%d", &select);
		if (select == 1)
		{
    
    
			Game();
		}
		else if (select==0)
		{
    
    
			break;
		}
		else
		{
    
    
			printf("选择错误,请重新选择!\n");
			continue;
		}

	}
	return 0;
}

Insert picture description here

Guess you like

Origin blog.csdn.net/cfk17829572643/article/details/112003017