问答详情
源自:4-4 分支结构之嵌套if-else语句

这里是哪里错了啊 应该怎么修改!!???

首先这个是在这个网页上可以运行成功的 https://img4.mukewang.com/5cc43fb00001dffa18690913.jpg

然后我去VC6.0中又试了一遍 然后出错了 一个是预处理命令的错误 然后我就没用那个预处理了 结果输出那里就出错了 可以帮我看看嘛

spacer.gif...图好像发不出来了 程序是这样的 

#include "stdafx.h"

#include <stdio.h>

int main()

{

    int sale=120; //销售业绩为120万

    int year=1; //刚刚进入公司1年

    //完善代码

    if(sale>100)

    if(year>=2)

    {

        printf("%s\n","恭喜您,获得奖励");

    }

    else

    {

        printf("%s\n","很遗憾,期望你再接再厉");

  }

    return 0;

}

然后 出错是这样的 

Compiling...

practise1.cpp

Linking...

LINK : fatal error LNK1168: cannot open Debug/practise1.exe for writing

执行 link.exe 时出错.


去掉预处理命令<stdio>之后出错是这样的


Compiling...

practise1.cpp

E:\VC6.0\MyProjects\practise1\practise1.cpp(12) : error C2065: 'printf' : undeclared identifier

执行 cl.exe 时出错.


提问者:宝慕林9338247 2019-04-27 19:45

个回答

  • qq_慕桂英1196597
    2019-05-10 22:31:23

    为什么有两个头函数,去掉第一个应该就对了