| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 593 人关注过本帖
标题:菜鸟 又求救
取消只看楼主 加入收藏
Tchong
Rank: 1
等 级:新手上路
帖 子:117
专家分:0
注 册:2008-10-17
结帖率:100%
收藏
 问题点数:0 回复次数:1 
菜鸟 又求救
这里有什么问题啊,为什么运行不了啊 ,请高手指点;

#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;
 }
搜索更多相关主题的帖子: 100 counter include 用户 
2008-10-23 20:06
Tchong
Rank: 1
等 级:新手上路
帖 子:117
专家分:0
注 册:2008-10-17
收藏
得分:0 
菜鸟 又求救
我比你们更早想到,我还改变了一点形式,使它更完善,不过还要谢谢你们解答,感谢你们
2008-10-24 00:58
快速回复:菜鸟 又求救
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016724 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved