《C++程序设计(谭浩强)》代码,均按章节分类

源代码在线查看: 例3.8.txt

软件大小: 85 K
上传用户: xulei147
关键词: 程序设计 代码 分类 谭浩强
下载地址: 免注册下载 普通下载 VIP

相关代码

				例3.8 编写程序,判断某一年是否为闰年。
				#include 
				using namespace std;
				int main( )
				{ int year;
				  bool leap;
				  cout				  cin>>year;                       //输入年份
				  if (year%4==0)                   //年份能被4整除
				    {if(year%100==0)               //年份能被4整除又能被100整除
				      {if (year%400==0)            //年份能被4整除又能被400整除
				          leap=true;               //闰年,令leap=true(真)
				       else leap=false;}           //非闰年,令leap=false(假)
				     else                         //年份能被4整除但不能被100整除肯定是闰年
				         leap=true;}              //是闰年,令leap=true
				  else                            //年份不能被4整除肯定不是闰年
				      leap=false;                 //若为非闰年,令leap=false
				  if (leap)
				     cout				  else
				     cout				  cout				  return 0;
				}			

相关资源