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

📄 bar.c

📁 vc library 韩国语版 希望对大家又帮助
💻 C
字号:
#include <graphics.h>
#include <stdlib.h>
#include <conio.h>
void main()
{
int x1,y1,w,h,color;
int gd=0,gm;
int i;
initgraph(&gd,&gm,"");
for (i=0;i<1000;i++)
  {
  color=random(16);
  x1=random(640);
  y1=random(480);
  w=random(80)+20;
  h=random(80)+20;
  setfillstyle(1,color);
  bar(x1,y1,x1+w,y1+h);
  }
getch();
closegraph();
}

⌨️ 快捷键说明

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