猜数游戏程序:程序本身指定一个数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"); }
打开App,查看更多内容
随时随地看视频慕课网APP