arc1.c
来自「The art and science of c_source code!」· C语言 代码 · 共 18 行
C
18 行
/* * File: arc1.c * ------------ * This program is the first test of the DrawArc function * and draws a complete circle. */#include <stdio.h>#include "genlib.h"#include "graphics.h"main(){ InitGraphics(); MovePen(1.5, 1.0); DrawArc(0.5, 0, 360);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?