不行,今天水一下任务

猜数游戏

新知识:是从1970年吧,开始到现在,所以每时每刻都在变,实现了随机抽取数字。

/*猜数游戏*/
#include 
#include 
#include 

int main() {
	srand(time(0));
	int number = rand() % 100 + 1;
	int a = 0;
	int count = 0;
	do {
		printf("enter a:\n");
		scanf("%d", &a);
		count++;
		if (a < number) {
			printf("too small.\n");
		} else if (a > number) {
			printf("too big.");
		}
	} while (a != number);
	printf("你输入了%d次", count);
	return 0;
}

高数累了,明天再战。

你可能感兴趣的:(c++,算法,c语言)