鱼C论坛

 找回密码
 立即注册
查看: 835|回复: 3

[已解决]代码出错

[复制链接]
发表于 2020-8-24 11:13:02 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
int main

{

srand(time(0));
int number=rand()%100+1;
int count=0;
int a=0;
do{

        printf("请猜这个1到100之间的数。");
        scanf("%d",&a);
        count++;
        if (a>number){
                printf("你猜的数大了。");
        }else if(a<number){
                printf("你猜的数小了。");
        }
}while(a!=number);
printf("太好了,你用了%d次就猜到了答案。\n",count);
最佳答案
2020-8-24 11:20:39


试试这样呢?不怎么会 C ,你的 main 忘记加上 () 括号了,最后也忘记设置 return 了
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main() {

    srand(time(0));
    int number = rand() % 100 + 1;
    int count = 0;
    int a = 0;
    do {

        printf("请猜这个1到100之间的数。");
        scanf("%d", &a);
        count++;
        if (a > number) {
            printf("你猜的数大了。");
        } else if (a < number) {
            printf("你猜的数小了。");
        }
    } while (a != number);
    printf("太好了,你用了%d次就猜到了答案。\n", count);

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-24 11:20:39 | 显示全部楼层    本楼为最佳答案   


试试这样呢?不怎么会 C ,你的 main 忘记加上 () 括号了,最后也忘记设置 return 了
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main() {

    srand(time(0));
    int number = rand() % 100 + 1;
    int count = 0;
    int a = 0;
    do {

        printf("请猜这个1到100之间的数。");
        scanf("%d", &a);
        count++;
        if (a > number) {
            printf("你猜的数大了。");
        } else if (a < number) {
            printf("你猜的数小了。");
        }
    } while (a != number);
    printf("太好了,你用了%d次就猜到了答案。\n", count);

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-24 11:26:02 | 显示全部楼层
没有包含头文件吧?
#include "stdio.h"
#include "windows.h"
#include <time.h>
int main()

{
        
        srand(time(0));
        int number=rand()%100+1;
        int count=0;
        int a=0;
        do{
                
        printf("请猜这个1到100之间的数。");
        scanf("%d",&a);
        count++;
        if (a>number){
                        printf("你猜的数大了。");
        }else if(a<number){
                        printf("你猜的数小了。");
        }
        }while(a!=number);
        printf("太好了,你用了%d次就猜到了答案。\n",count);
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-24 11:26:23 | 显示全部楼层
Twilight6 发表于 2020-8-24 11:20
试试这样呢?不怎么会 C ,你的 main 忘记加上 () 括号了,最后也忘记设置 return 了

刚学没几天,就学着敲,开学要考555
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 07:48

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表