程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> Visual Basic語言 >> VB綜合教程 >> 告訴你兩種判斷閏年的簡單方法

告訴你兩種判斷閏年的簡單方法

編輯:VB綜合教程
OptionExplicit
  
  PrivateSubCommand1_Click()
  Print2000
  PrintIsLeapYearA(2000)
  PrintIsLeapYearB(2000)
  Print1999
  PrintIsLeapYearA(1999)
  PrintIsLeapYearB(1999)
  Print1998
  PrintIsLeapYearA(1998)
  PrintIsLeapYearB(1998)
  Print1997
  PrintIsLeapYearA(1997)
  PrintIsLeapYearB(1997)
  Print1996
  PrintIsLeapYearA(1996)
  PrintIsLeapYearB(1996)
  EndSub
  
  FunctionIsLeapYearA(ByValyrAsInteger)AsBoolean
  If((yrMod4)=0)ThenIsLeapYearA=((yrMod100)>0)Or((yrMod400)=0)
  EndIf
  EndFunction
  
  PublicFunctionIsLeapYearB(ByValyrAsInteger)AsBoolean
  IsLeapYearB=Day(DateSerial(yr,2,29))=29
  EndFunction->

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved