猜字游戏
Posted zxf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猜字游戏相关的知识,希望对你有一定的参考价值。
1 /* Note:Your choice is C IDE */ 2 #include "stdio.h" 3 #include <stdlib.h> 4 #include<time.h> 5 void main() 6 { 7 int i,j; 8 srand((unsigned)time(NULL));//生成不重复的随机数stdlib.h 9 j=rand() %100;// 10 printf("!!!!请输入一个100以内的整数!!!\n"); 11 while(1) 12 13 { 14 scanf("%d",&i); 15 if(i<j) 16 { 17 printf("太小了\n"); 18 19 }else if(i>j){ 20 printf("太大了\n"); 21 22 }else{ 23 printf("恭喜,猜对了!!\n"); 24 25 break; 26 } 27 } 28 }
以上是关于猜字游戏的主要内容,如果未能解决你的问题,请参考以下文章