3 回答
望远
TA贡献1017条经验 获得超1032个赞
#include <stdio.h> #include <stdlib.h> #include <time.h> void main() { int n,m; srand(time(NULL));//设置随机数种子 n=rand()%101; printf("请猜测随机数(0-100):"); scanf("%d",&m); printf("随机数为:%d\n",n); if(m>n) printf("G\n"); }
- 3 回答
- 0 关注
- 1606 浏览
添加回答
举报
0/150
提交
取消