钟表模拟程序(表针形式)
2010-10-30 ~ 2021-10-4
(2)
这是个简单的表针式时钟模拟程序。
运行效果如下:
在源代码的基础上,可以通过 API 函数 mciSendString 轻松加上滴答声音,我就不再多写了。
代码如下:
////////////////////////////////////////////
// 程序名称:钟表模拟程序(表针形式)
// 编译环境:Visual C++ 6.0 ~ 2019,EasyX_20210730
// 程序编写:BestAns <BestAns@qq.com>
// 最后更新:2010-10-30
//
#include <graphics.h>
#include <conio.h>
#include <math.h>
#define PI 3.1415926536
void DrawHand(int hour, int minute, int second)
{
double a_hour, a_min,
...