菜鸟 又求救
这里有什么问题啊,为什么运行不了啊 ,请高手指点;#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int randInt,num,counter=0;
/* 以下两行代码生成0-99的随机数放进randInt中 */
srand((unsigned int)time(NULL));
randInt=rand()%100;
while(randInt!=num){
printf("请用户输入一个数:");
scanf("%d",&num);
if(randInt<num){
printf("你猜的数大了,请重新猜一次\n");
}
if(randInt>num){
printf("你猜的数小了,请重新猜一次\n");
}
counter++;
if(randInt==num){
if(counter++>5){
printf("你的运气真背\n");}
if(counter++<=5){
printf("你的运气真好,你是天才吗?\n");}
printf("恭喜你啊,恭喜!,你猜对了,你真厉害\n\n输出的随机数是%d\n\n你猜的次数是%d\n",num,counter++);
}
return 0;
}