delphi初学者的2个幼稚问题,谢谢帮忙(30分)

  • 主题发起人 主题发起人 xjzjgydx
  • 开始时间 开始时间
X

xjzjgydx

Unregistered / Unconfirmed
GUEST, unregistred user!
我在edit1里填了2004,edit2里填了4
1.我怎么把edit1.text里的2004转换为数字类型
2.我怎么判断edit1.text里的2004是闰年,具体怎么写,完整的代码,谢谢:)
 
看来,问题不是大问题!!!! 你说明白一些 别人才能帮你的
 
uses DateUtils;

var I:Integer;

I:=StrToInt(Edit1.Text)
//1
if IsLeapYear(I) then ShowMessage('闰年')
//2
 
//edit2里填了4

是什么意思?
 
同意 TYZhang
 
uses
。。。。。, DateUtils;

var
I:Integer;

I:=StrToInt(Edit1.Text)

if IsLeapYear(I) then
ShowMessage('闰年');
 
uses
。。。。。, DateUtils;

var
I:Integer;

I:=StrToInt(Edit1.Text)

if IsLeapYear(I) then
ShowMessage('闰年')

还有
if (I div 400=0) or((i div 100<>0 )and(i div 4=0))then rn;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部