鱼C论坛

 找回密码
 立即注册
查看: 2554|回复: 6

无法运行,遇到好几回了

[复制链接]
发表于 2020-2-5 20:07:44 | 显示全部楼层 |阅读模式

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

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

x
我用的vc++6.0
Error: Could not generate command line for the 32-bit C/C++ Compiler for 80x86 tool.
这是咋回事啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-5 20:11:51 | 显示全部楼层
代码??
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-5 20:40:33 | 显示全部楼层
把代码贴上来
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-7 20:06:48 | 显示全部楼层
#include<stdio.h>
void main(void)
{
        int sqrt_02(int question);
        int question=50,answer;
        answer=sqrt_02(question);
        if(answer<0)
                printf("ERROR:sqrt returns %d\n",answer);
        else
                printf("The squart root of %d is %d\n",question,answer);
}
int sqrt_02(int question)
{
        int temp=quertion/2;
        while(temp--)
        {
                if(temp*temp==question)
                        return temp;
        }
        return -1;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-7 23:28:06 From FishC Mobile | 显示全部楼层
我觉得是你的主函数写错了。应该是int main()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-9 10:48:33 | 显示全部楼层
int sqrt_02(int question)
{
        int temp=quertion/2; //这里写错了,quertion应该是question

正确的实现:
#include<stdio.h>
void main(void)
{
        int sqrt_02(int question);
        int question=36,answer;
        answer=sqrt_02(question);
        if(answer<0)
                printf("ERROR:sqrt returns %d\n",answer);
        else
                printf("The squart root of %d is %d\n",question,answer);

                return;
}
int sqrt_02(int question)
{
        int temp=question/2;
        while(temp--)
        {
                if(temp*temp==question)
                        return temp;
        }
        return -1;
}







#include<stdio.h>
void main(void)
{
        int sqrt_02(int question);
        int question=36,answer;
        answer=sqrt_02(question);
        if(answer<0)
                printf("ERROR:sqrt returns %d\n",answer);
        else
                printf("The squart root of %d is %d\n",question,answer);

                return;
}
int sqrt_02(int question)
{
        int temp=question/2;
        while(temp--)
        {
                if(temp*temp==question)
                        return temp;
        }
        return -1;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-9 16:16:25 | 显示全部楼层
感谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-16 05:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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