c语言的bar()函数和 rectangle()函数

这2个划线函数后面的坐标,为什么计算上bar()的四周和rectangle()的四周留的空间都是2,可是实际中上下左右空间却差别很大... 这2个划线函数后面的坐标,为什么计算上bar()的四周和rectangle()的四周留的空间都是2,可是实际中 上下左右空间却差别很大 展开
 我来答
zhaoyongfa1
2012-02-15 · TA获得超过123个赞
知道答主
回答量:63
采纳率:0%
帮助的人:55.6万
展开全部
bar画一个填充矩形 填充颜色由 setfillstyle决定
rectangle画一个空矩形框,线条颜色由setcolor决定
艳阳高照的午后
推荐于2018-05-07 · TA获得超过1万个赞
知道大有可为答主
回答量:1.2万
采纳率:97%
帮助的人:4986万
展开全部
  bar函数
  功 能: 画一个二维条形图
  用 法: void far bar(int left,int top,int right,int bottom);
  程序例:
  #include <graphics.h>
  #include <stdlib.h>
  #include <stdio.h>
  #include <conio.h>
  int main(void)
  {
  /* request auto detection */
  int gdriver = DETECT,gmode,errorcode;
  int midx,midy,i;
  /* initialize graphics and local variables */
  initgraph(&gdriver,&gmode,"");
  /* read result of initialization */
  errorcode = graphresult();
  if (errorcode != grOk) /* an error occurred */
  {
  printf("Graphics error: %s\n",grapherrormsg(errorcode));
  printf("Press any key to halt:");
  getch();
  exit⑴; /* terminate with an error code */
  }
  midx = getmaxx() / 2;
  midy = getmaxy() / 2;
  /* loop through the fill patterns */
  for (i=SOLID_FILL; i<USER_FILL; i++)
  {
  /* set the fill style */
  setfillstyle(i,getmaxcolor());
  /* draw the bar */
  bar(midx-50,midy-50,midx+50,
  midy+50);
  getch();
  }
  /* clean up */
  closegraph();
  return 0;
  }
  
  rectangle函数
  功 能: 画一个矩形
  用 法: void far rectangle(int left, int top, int right, int bottom);
  参数说明:(left ,top )为矩形的左上坐标,(right,bottom)为矩形的右下坐标,两者可确定一个矩形的大小
  程序例:
  #include <graphics.h>
  #include <stdlib.h>
  #include <stdio.h>
  #include <conio.h>
  int main(void)
  {
  /* request auto detection */
  int gdriver = DETECT, gmode, errorcode;
  int left, top, right, bottom;
  /* initialize graphics and local variables */
  initgraph(&gdriver, &gmode, "");
  /* read result of initialization */
  errorcode = graphresult();
  if (errorcode != grOk) /* an error occurred */
  {
  printf("Graphics error: %s\n", grapherrormsg(errorcode));
  printf("Press any key to halt:");
  getch();
  exit(1); /* terminate with an error code */
  }
  left = getmaxx() / 2 - 50;
  top = getmaxy() / 2 - 50;
  right = getmaxx() / 2 + 50;
  bottom = getmaxy() / 2 + 50;
  /* draw a rectangle */
  rectangle(left,top,right,bottom);
  /* clean up */
  getch();
  closegraph();
  return 0;
  }
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式