#include<stdio.h>#include<stdlib.h> #include<time.h> int main(){ short a,b=0; printf("猜数字游戏\n"); printf("数字在1-100之间\n");srand((unsigned)time(NULL)); b=rand()%100; b++;while(a!=b){printf("请输入您要猜的数字\n"); scanf("%hd",&a); if(a>b) printf("大了\n"); if(a<b) printf("小了\n");}printf("恭喜您猜对了\n");return 0;}