⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bar3d.cpp

📁 c语言编程100例,希望能令大家对C语言有一个更多.更好的认识
💻 CPP
字号:
#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 mode */
   initgraph(&gdriver, &gmode, "D:\\Tools\\Tc3.0\\Bgi");

   /* 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);             /* return with error code */
   }

   midx = getmaxx() / 2;
   midy = getmaxy() / 2;
   for (i=EMPTY_FILL; i<USER_FILL; i++)
   {
	 /* set the fill style */
	 setfillstyle(i, getmaxcolor());
	 /* draw the 3-d bar */
	 bar3d(midx-50, midy-50, midx+50,midy+50, 10, 1);
	 getch();
   }
   getch();
   closegraph();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -