drawbox.c

来自「书名:C语言科学与艺术,以前交钱下载的」· C语言 代码 · 共 40 行

C
40
字号
/* * File: drawbox.c * --------------- * This program draws a box on the screen. */#include <stdio.h>#include "genlib.h"#include "graphics.h"/* Function prototypes */void DrawBox(double x, double y, double width, double height);/* Main program */main(){    InitGraphics();    DrawBox(0.5, 0.5, 1.0, 1.0);}/* * Function: DrawBox * Usage: DrawBox(x, y, width, height) * ----------------------------------- * This function draws a rectangle of the given width and * height with its lower left corner at (x, y). */void DrawBox(double x, double y, double width, double height){    MovePen(x, y);    DrawLine(0, height);    DrawLine(width, 0);    DrawLine(0, -height);    DrawLine(-width, 0);}

⌨️ 快捷键说明

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