LeapYear
<P>#include <iostream.h><BR>void main(void)<BR>{<BR> int year;<BR> bool IsLeapYear;</P><P> cout << "Enter the year: ";<BR> cin >> year;<BR> IsLeapYear = ((year % 4 == 0 && year % 100 !=0) || (year % 400 == 0));</P>
<P> if (IsLeapYear)<BR> cout << year << "is a leap year" << endl;<BR> else<BR> cout << year << "is not a leap year" << endl;<BR>}</P>
[ 本帖最后由 smalke 于 2008-9-16 23:21 编辑 ] 聪明四了?拜辞:face (10): 这样的帖子,必须要顶。(哎,挣积分下载好难啊) 这样的帖子,必须要顶。(哎,挣积分下载好难啊) :face (36):这是啥语言?
就认识
是空格的意思 非常给力贴..... 大力支持.....
页:
[1]