求这道题的代码,请不要粘贴复制别的

定义一个类Exercise2010。该类有一个表示年份的int型成员变量year,并包含以下两个方法:publicvoidset(inty);//设置成员变量year的值... 定义一个类Exercise2010。该类有一个表示年份的int型成员变量year,并包含以下两个方法:
public void set(int y); // 设置成员变量year的值。
public boolean isLeap(); // 报告year表示的年份是否为闰年。
展开
 我来答
百度网友ce9e08b7
推荐于2016-08-25 · TA获得超过1870个赞
知道小有建树答主
回答量:1675
采纳率:0%
帮助的人:1152万
展开全部
class Exercise2010{
private int year;

public void set(int y){
this.year = y;
}

public boolean isLeap(){
if((year%100==0 &&year%400==0)||(year%100!=0 &&year%4==0))
return true;
else
return false;
}
}
追问
可不可以写成完整的程序,输入输出之类的
追答
public class TestBaiduKnow {
public static void main(String[] args) {
Exercise2010 e = new Exercise2010();
e.set(1986);

if(e.isLeap())
System.out.print("闰年");
else
System.out.print("不是闰年");
}
}

class Exercise2010{
private int year;

public void set(int y){
this.year = y;
}

public boolean isLeap(){
if((year%100==0 &&year%400==0)||(year%100!=0 &&year%4==0))
return true;
else
return false;
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式