📅  最后修改于: 2023-12-03 15:14:25.628000             🧑  作者: Mango
bar3d()函数是C语言图形库中的一个绘制3D柱状图的函数,可以在控制台绘制出立体效果的柱状图,让数据更加直观明了。
void bar3d(int left, int top, int right, int bottom, int depth, int topflag);
参数说明:
#include <graphics.h>
#include <conio.h>
#include <stdio.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "");
// 绘制柱状图
setfillstyle(SOLID_FILL, LIGHTBLUE);
bar3d(100, 100, 250, 400, 50, 1);
getch();
closegraph();
return 0;
}