smalke 发表于 2008-9-16 23:20:11

LeapYear

<P>#include &lt;iostream.h&gt;<BR>void main(void)<BR>{<BR>&nbsp;int year;<BR>&nbsp;bool IsLeapYear;</P>
<P>&nbsp;cout &lt;&lt; "Enter the year: ";<BR>&nbsp;cin &gt;&gt; year;<BR>&nbsp;IsLeapYear = ((year % 4 == 0 &amp;&amp; year % 100 !=0) || (year % 400 == 0));</P>
<P>&nbsp;if (IsLeapYear)<BR>&nbsp;&nbsp;&nbsp; cout &lt;&lt; year &lt;&lt; "is a leap year" &lt;&lt; endl;<BR>&nbsp;else<BR>&nbsp;&nbsp;&nbsp; cout &lt;&lt; year &lt;&lt; "is not a leap year" &lt;&lt; endl;<BR>}</P>

[ 本帖最后由 smalke 于 2008-9-16 23:21 编辑 ]

anna 发表于 2010-3-17 09:01:13

聪明四了?拜辞:face (10):

zhangyao60 发表于 2010-3-18 21:46:37

这样的帖子,必须要顶。(哎,挣积分下载好难啊)

zhangyao60 发表于 2010-3-18 21:47:24

这样的帖子,必须要顶。(哎,挣积分下载好难啊)

xiaochuan 发表于 2010-3-20 12:42:48

:face (36):这是啥语言?
就认识&nbsp;
是空格的意思

the995 发表于 2011-5-8 18:59:55

非常给力贴.....

the995 发表于 2011-5-8 22:16:20

大力支持.....
页: [1]
查看完整版本: LeapYear