arc2.c

来自「The art and science of c_source code!」· C语言 代码 · 共 18 行

C
18
字号
/* * File: arc2.c * ------------ * This program is the second test of the DrawArc function * and draws a left semicircle. */#include <stdio.h>#include "genlib.h"#include "graphics.h"main(){    InitGraphics();    MovePen(1.0, 1.5);    DrawArc(0.5, 90, 180);}

⌨️ 快捷键说明

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