猿问
猜数游戏程序:程序本身指定一个数n(0~100以内),让用户输入所猜的数m,如果m>n,则程序输出G
wsamy
浏览 1607
回答 3
3回答
望远
#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"); }
2
0
0
随时随地看视频
慕课网APP
相关分类
C
typedef入门问题
1 回答
我要回答