登录
首页 » Windows开发 » 精确到毫秒的时钟,以及秒表,带有提醒功能

精确到毫秒的时钟,以及秒表,带有提醒功能

于 2022-02-06 发布 文件大小:15.34 kB
0 194
下载积分: 2 下载次数: 1

代码说明:

精确到毫秒的时钟,以及秒表,带有提醒功能- Precisely to a millisecond clock, as well as the stopwatch, has the reminder function

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • vc++ classic books VC++ development canon that teach you from entry to senior
    vc++经典书籍 VC++开发宝典,教你从入门到高级-vc++ classic books VC++ development canon that teach you from entry to senior
    2023-01-23 01:30:07下载
    积分:1
  • 有了登陆、注册、添加图书、图书管理等一系列功能…
    具有登陆、注册、添加书籍、管理书籍、电子支付等一系列功能-With the landing, register, add books, management books, a series of features such as electronic payment
    2022-06-03 04:28:56下载
    积分:1
  • 一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong ga...
    一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong game that uses DirectX 7. I wrote it in just one day and the graphics are smooth - over 50 fps! There are sound FX too, but the best thing about the game is the computer AI. It doesn t simply chase the ball, it predicts the balls path even if it is going to bounce of several walls and moves accordingly. Clever AI doesn t mean it is impossible to beat - it means it acts like a human player making the game more fun. So - have fun!-DX pong is a neat pong game that uses DirectX 7. I wrote it in just one day and the graphics are smooth- over 50 fps! There are sound FX too, but the best thing about the game is the computer AI. It doesn t simply chase the ball, it predicts the balls path even if it is going to bounce of several walls and moves accordingly. Clever AI doesn t mean it is impossible to beat- it means it acts like a human player making the game more fun. So- have fun!
    2022-03-14 03:16:04下载
    积分:1
  • 这里讨论TIA自动化等相关话题(21KB)
    这里讨论TIA自动化等相关话题(21KB)-here to discuss topics related to automation (21KB)
    2023-06-22 03:55:03下载
    积分:1
  • 搜索引擎
    爬虫模块、预处理模块和搜索模块。 搜索引擎的三个部分是相互独立的,三个部分分别工作,主要的关系体现在前一部分得到的数据结果为后一部分提供原始数据。 用户通过浏览器提交查询的词或者短语 P,搜索引擎根据用户的查询返回匹配的网页信息列表 L; 上述过程涉及到两个问题,如何匹配用户的查询以及网页信息列表从何而来,根据什么而排序?用户的查询 P 经过分词器被切割成小词组 并被剔除停用词 ( 的、了、啊等字 ),根据系统维护的一个倒排索引可以查询某个词 pi 在哪些网页中出现过,匹配那些 都出现的网页集即可作为初始结果,更进一步,返回的初始网页集通过计算与查询词的相关度从而得到网页排名,即 Page Rank,按照网页的排名顺序即可得到最终的网页列表; 假设分词器和网页排名的计算公式都是既定的,那么倒排索引以及原始网页集从何而来?原始网页集在之前的数据流程的介绍中,可以得知是由爬虫 spider 爬取网页并且保存在本地的,而倒排索引,即词组到网页的映射表是建立在正排索引的基础上的,后者是分析了网页的内容并对其内容进行分词后,得到的网页到词组的映射表,将正排索引倒置即可得到倒排索引; 网页的分析具体做什么呢?由于爬虫收集来的原始网页中包含很多信息,比如 html 表单以及一些垃圾信息比如广告,网页分析去除这些信息,并抽取其中的正文信息作为后续的基础数据。
    2022-05-07 14:54:09下载
    积分:1
  • OpenSSL的CE
    可在基于Windows CE的系统下编译的Openssl。-openssl for ce
    2022-02-26 01:17:38下载
    积分:1
  • 考试系统
    简单的考试系统,实现最基本的考试功能, 本系统通信采用Socket编程,该通信方式在简单、准确性和运行速度方面有其优势;前台采用Eclipse作为主要开发工具,可与JDK无缝链接。 系统开发平台:Eclipse 系统开发语言:Java 通信方式:Socket 服务器功能模块:通信功能、试题处理。 客户端功能模块:主要是界面设计,通信功能,试题事件处理,
    2023-08-08 11:45:05下载
    积分:1
  • Windows CE5.0环境下bootloader步骤 附带屏幕截图环境为platform builder5.0...
    Windows CE5.0环境下bootloader开发步骤 附带屏幕截图开发环境为platform builder5.0-Windows CE5.0 development environment steps bootloader screen shots attached to development environment for platform builder5.0
    2022-03-17 05:45:46下载
    积分:1
  • 易语言网络斗地主源码
    应用背景 易语言斗地主游戏,完整可运行 编译无bug 关键技术 网络通信游戏算法等 可以多人联机游戏 提示牌的没有写 进入游戏是房间满了自动到下一个房间
    2022-03-04 20:01:18下载
    积分:1
  • 如何将无序的多边形顶点集合,排序成逆时针顺序!这个正是凸包算法前面的一些准备工作!...
    如何将无序的多边形顶点集合,排序成逆时针顺序!这个正是凸包算法前面的一些准备工作!-how to disorderly polygon vertex assembly, sequencing into a counter-clockwise order! This is why the convex hull algorithm front of some preparation work!
    2022-03-24 05:38:48下载
    积分:1
  • 696516资源总数
  • 106605会员总数
  • 12今日下载