标题:请 各位大哥帮帮~ import javax.swing.JOptionPane 求闰年
取消只看楼主
dingningvol
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-4-26
 问题点数:0 回复次数:1 
请 各位大哥帮帮~ import javax.swing.JOptionPane 求闰年
//InputDialogDemo.java:Entering input from input dialog boxes
import javax.swing.JOptionPane;
public class InputDialogDemo
{
//*Main method*/
public staitc void main(String args[])
{
//Prompt the user to enter a year
String yearString = JOptionPane.showInputDialog(null,
"Enter a year","Example 2.2 Input(int)",
JOptionPane.QUESTION_MESSAGE);

//Convert the string into an int value
int year = Integer.parseInt(yearString);

//Check if the year is leap year
boolen isLeapYear =
((year%4==0)&&(year%100!=0))||(year%400==0);

//Display the result in a message dialog box
JOptionPane.showMessageDialog(null,
year + "is a leap year?" + isleapyear,
"Example 2.2 Output (int)",JOptinPane.INFORMATION_MESSAGE);

//Prompt the user to enter a double value
String doubleString = JOptionPane.showInputDialog(null,
"Enter a double value", "Example 2.2 Input (double)",
JoptionPane.QUESTION_MESSAGE);
//Convert the string into a double value
double doubleValue = Double.parseDouble(doubleString);


//Cheak if the number is positive
JOptionPane.showMessageDialog(null,
doubleValue + "is positive?" +(doubleValue>0),
"Example 2.2 Output (double)",
JOptionPane.INFORMATION_MESSAGE);


System.exit(0);
}
}

可是错误报告中的解释

请高手帮我下 谢谢
搜索更多相关主题的帖子: import JOptionPane javax swing 闰年 
2007-04-26 20:34
dingningvol
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-4-26
得分:0 
回复:(dingningvol)请 各位大哥帮帮~ import javax...
多谢 我肯定是眼花了 这么明显~~
2007-04-27 12:27



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-135226-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.076566 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved