标签:sign srand 重复 image alt 数字 scanf print span
/* Note:Your choice is C IDE */ #include "stdio.h" #include <stdlib.h> #include<time.h> void main() { int i,j; srand( (unsigned)time( NULL ) );//生成不重复的随机数 j=rand() % 100;//生成100以内的随机数 while(1) { scanf("%d",&i); if(i<j){ printf("太小了\n"); }else if(i>j){ printf("太大了\n"); }else{ printf("恭喜你,猜对了!!\n"); break; } } }
标签:sign srand 重复 image alt 数字 scanf print span
原文地址:http://www.cnblogs.com/liangjinjie/p/7638285.html