数据驱动、坚持为客户提供有价值的服务和内容
1、猜数字游戏
#define _CRT_SECURE_NO_WARNINGS #include #include #include //猜数字游戏 int main() { int guess = 0; //生成随机数 //0~99 --> 1~100 int ret = rand() % 100 + 1;//生成随机数的函数 printf(