新手学习JS函数调用,练习两个实例,求两个数乘积与华氏温度转
发布于 2019-12-24 08:07
如有不明白的地方,请关注微信公众号weisico-com 留言 或移步腾讯视频播放地址留言 https://v.qq.com/x/page/q30340empsd.html 原创视频,欢迎关注支持微信公众号weisico-com与百家号互联网微风说
阅读(79)评论(2)赞 (0)
发布于 2019-12-24 08:07
如有不明白的地方,请关注微信公众号weisico-com 留言 或移步腾讯视频播放地址留言 https://v.qq.com/x/page/q30340empsd.html 原创视频,欢迎关注支持微信公众号weisico-com与百家号互联网微风说
阅读(79)评论(2)赞 (0)
发布于 2015-10-29 10:42
在讲Delphi自定义函数声明以及调用之前,我们先看一段代码 unitUnit1;interfaceusesWindows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms,Dialogs,StdCtrls;typeTForm1=class(TForm)btn1:TButton;edt1:TEdit;edt2:TEdit;procedurebtn1Click(
阅读(279)评论(2)赞 (0)
发布于 2015-02-16 10:12
1 、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=currentTime.Day
阅读(181)评论(2)赞 (1)