新人起步(5/n)
Posted allsear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新人起步(5/n)相关的知识,希望对你有一定的参考价值。
接4.1,
个人修改后
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int cishu = 0;
int jiage;
int biaozhun;
srand((unsigned) time(NULL));
biaozhun = (rand() * rand()) % 59 + 1;
for( ;biaozhun != jiage; )
{
printf("请输入你猜测的价格");
scanf("%d",&jiage);
if(biaozhun < jiage)
{
printf("猜的高了哦
");
cishu++;
}
else if(biaozhun > jiage)
{
printf("猜的低了哦
");
cishu++;
}
else
{
printf("恭喜你猜对了
");
cishu++;
}
}
printf("一共猜测%d次,价格为%d",cishu,jiage);
return 0;
}
更改历程:修改do-while为for 循环,null前未加time导致数据固定。修改完毕
以上是关于新人起步(5/n)的主要内容,如果未能解决你的问题,请参考以下文章