C语言猜数字小游戏
#include <stdio.h> #include <time.h> #include <stdlib.h> int main() { int x,num,st,ed; char ch; srand((int)time(NULL)); while(1) { printf("请输入你想要猜的数的范围(用空格隔开):"); scanf("%d %d",&st,&ed); ed=ed-st+1; num=rand()%ed+st; printf("请输入你猜的数字:"); scanf("%d",&x); while(x!=num) { if(x>num) printf("猜大了,继续努力~~\n"); if(x<num) printf("猜小了,继续加油哦!\n"); scanf("%d",&x); } printf("真棒!猜对了!!\n"); printf("继续玩请输入Y,否则请输入N\n"); getchar(); scanf("%c",&ch); if(ch=='Y') continue; else break; } return 0; }
.........
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。