/*
算闰年,思路简单,按照题目的要求就行了
判断闰年的条件
((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)
*/
# include
int judge_leap(int year)
{
if(((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
...
分类:
其他好文 时间:
2015-03-07 10:14:03
阅读次数:
152
描述:判断某年是否是闰年。输入输入只有一行,包含一个整数a(0 int main(){ int a; scanf("%d",&a); if((a%4==0&&a%100!=0)||a%400==0) { printf("Y"); } else { printf("N...
分类:
其他好文 时间:
2015-02-16 18:16:01
阅读次数:
108
importjava.util.Scanner;
classTestYear
{
publicstaticvoidmain(String[]args)
{
Scanners=newScanner(System.in);
System.out.println("请输入年份:");
intyear=s.nextInt();
System.out.println("请输入月份:");
intmonth=s.nextInt();
System.out.println..
分类:
其他好文 时间:
2015-01-08 07:15:21
阅读次数:
153
//static void Main(string[] args) {const double PI = 3.14; const int BAR_UNIT_PRICE = 25; const int BRICK_UNIT_PRICE = 85; //输入 int a, b; Console....
分类:
其他好文 时间:
2014-12-27 11:18:44
阅读次数:
170
//语法:
public static bool IsLeapYear(int year)
//用法举例:
using System;
public class IsLeapYear
{
public static void Main()
{
for (int year = 1994; year <= 2014; year++)
{
if (...
分类:
其他好文 时间:
2014-09-15 13:01:28
阅读次数:
184
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace runnian
{
class Program
{
static void Main(stri...
分类:
其他好文 时间:
2014-09-09 18:22:49
阅读次数:
193
/***日期处理工具类*/varDateUtil=function(){/***判断闰年*@paramdateDate日期对象*@returnbooleantrue或false*/this.isLeapYear=function(date){return(0==date.getYear()%4&&(...
分类:
Web程序 时间:
2014-07-18 17:26:22
阅读次数:
335
哈哈,好久没写新博文啦,原因是最近一直在研究用jquery UI实现截取头像的功能,哈哈
言归正传,有时候呢,我们会在用户资料的页面用到一个年月日日期的三级联动效果。在网上找了找,没看到有多么合适的(主要是本屌丝倾向于用jquery写成插件的形式使用,哈哈~~)
这篇博文呢,主要目的是给大家看下我用jquery写成插件的形式。
原理很简单,就是判断闰年,然后在select chang...
分类:
Web程序 时间:
2014-07-17 14:38:34
阅读次数:
258
嵌入式linux多进程编程
在主程序显示文本菜单,提供如下服务,要求每个服务都通过生成子进程来提供。
服务包括:日历信息显示,日期信息显示,判断闰年服务,文件复制功能,数字排序功能,退出功能。
#include
#include
#include
#include
#include
#include
void DisplayCalen();// 1 显示...
分类:
系统相关 时间:
2014-06-24 20:43:39
阅读次数:
302
输入一个年份,判断是否为闰年。判断闰年的方法是:如果该年能被4整除但不能被100整除;或者能被400整除,就是闰年。 1 #include 2 3 int main( int argc, char* argv[] ) 4 { 5 6 unsigned long year; 7 ...
分类:
其他好文 时间:
2014-06-18 09:42:30
阅读次数:
152