宝慕林9338247
2019-04-27 19:45
首先这个是在这个网页上可以运行成功的
然后我去VC6.0中又试了一遍 然后出错了 一个是预处理命令的错误 然后我就没用那个预处理了 结果输出那里就出错了 可以帮我看看嘛
...图好像发不出来了 程序是这样的
#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 时出错.
为什么有两个头函数,去掉第一个应该就对了
C语言入门
926025 学习 · 20793 问题
相似问题