求大神解决C++的问题!!?

#include<stdio.h>typedefstruct{intx,y;}direction;intvisible(directions,directionA,dir... #include<stdio.h>
typedef struct{int x,y;}direction;
int visible(direction s,direction A,direction B,direction C)
{
direction p1,p2;
int d;
p1.x=B.x-A.x;
p1.y=B.y-A.y;
p2.x=C.x-A.x;
p1.y=C.y-A.y;

d=s.x*p1.x*p2.x+s.y*p1.y*p2.y;
printf("M\n",d);
return d>0;
}

void main()
{
char *ss[]={"invisible","visible"};
direction s={1,1},T={1,1},A={0,0},B={2,1};
puts(ss[visible(s,T,A,B)]);
}

为什么这个程序显示error:INK : fatal error LNK1168: cannot open Debug/84665486787.exe for writing 。
并且请求告知输出至屏幕的结果第一行是:-1 。 第二行是: invisible 。的原因 、
答案是怎么算出来的 ?
展开
 我来答
porker2008
推荐于2016-08-22 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
#include<stdio.h>
typedef struct{ int x, y; } direction;
int visible(direction s, direction A, direction B, direction C)
{
direction p1, p2;
int d;
p1.x = B.x - A.x; // -1
p1.y = B.y - A.y; // -1
p2.x = C.x - A.x; // 1
// 下面这行是不是应该p2.y
p1.y = C.y - A.y; // 0

//   1  *  -1  *   1  +  1  *  -1  *  undefined
d = s.x * p1.x * p2.x + s.y * p1.y * p2.y;

printf("M\n", d);
return d>0;
}

void main()
{
char *ss[] = { "invisible", "visible" };
direction s = { 1, 1 }, T = { 1, 1 }, A = { 0, 0 }, B = { 2, 1 };
puts(ss[visible(s, T, A, B)]);
}
更多追问追答
追问
我把那里改成p2.y之后依然是这样。

Linking...
LINK : fatal error LNK1168: cannot open Debug/84665486787.exe for writing
追答
这个问题应该是那个exe打开了没有关,你去任务管理器那里把进程杀了就可以了
yy082533
2018-07-04
知道答主
回答量:1
采纳率:0%
帮助的人:857
展开全部
这个结果是什么
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式