哪位大神可以帮我解释这个JAVA题目?

importjava.io.*;publicclasstest{publicstaticvoidmain(String[]args)throwsIOException{i... import java.io.*;
public class test
{
public static void main(String[ ] args) throws IOException{
int year;
boolean IsLeapYear;
System.out.println("Enter the year:");
BufferedReader in =new BufferedReader(
new InputStreamReader(System.in));
year=Integer.parseInt(in.readLine());
IsLeapYear=((year%4==0 && year%100 != 0)||(year%400 == 0));
if (IsLeapYear)
{
System.out.print(year);
System.out.println( "is a leap year");
}
else
{
System.out.print(year);
System.out.println( " is not a leap year");
}
}
}
请详细帮我说明一下“throws IOException”和“
BufferedReader in =new BufferedReader(
new InputStreamReader(System.in));
year=Integer.parseInt(in.readLine());
”是什么意思?
展开
 我来答
百度网友4b68195
2012-10-14 · TA获得超过1520个赞
知道大有可为答主
回答量:1773
采纳率:100%
帮助的人:1719万
展开全部
throws IOException 是抛出异常。
从键盘上输入年份,后转换为整数并赋给变量year.
追问
这个好像只能输入一个数字的,那如果要输入几个数字,应该怎样写?(以输入3个数字,让其从大到小输出为例)
追答
这可以输入任意位数,输入完后打回车。
永tz
2012-10-14 · 超过13用户采纳过TA的回答
知道答主
回答量:75
采纳率:0%
帮助的人:38.7万
展开全部
这个程序是判断闰年的吧!throws IOException是抛出异常
BufferedReader in =new BufferedReader(new InputStreamReader(System.in));是从键盘接受输入流
year=Integer.parseInt(in.readLine()); 是将接收到的流转换成整形!
更多追问追答
追问
那如果要输入几个数字,应该怎样写?(以输入3个数字,让其从大到小输出为例)
追答
什么意思?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式