import javax,swing,JOptionPane;
public class Square
{
public static void main(String[] args)
{
String s=JOptionPane.showlnputDialog("输入一个整数:");
int n=lnteger.parselnt(s);
int m=n*n;
JOptionpane.showMessageDialog(
null,
s+"的平方为:"+m,
"标题:平方",
JOptionPane.PLAN_MESSAGE);
System.exit(0);
}
}
这是那个地方的错误啊,我找不到
----------------解决方案--------------------------------------------------------
import javax,swing,JOptionPane;
public class Square
{
public static void main(String[] args)
{
String s=JOptionPane.showlnputDialog("输入一个整数:");
int n=lnteger.parselnt(s);
int m=n*n;
JOptionpane.showMessageDialog(
null,
s+"的平方为:"+m,
"标题:平方",
JOptionPane.PLAN_MESSAGE);
System.exit(0);
}
}
这是那个地方的错误啊,我找不到
你的第一句怎么写的?
----------------解决方案--------------------------------------------------------
不对的
import javax.swing.JOptionPane;
public class Square2
{
public static void main(String[] args)
{
String s=JOptionPane.showlnputDialog("输入一个整数:");
int n=lnteger.parselnt(s);
int m=n*n;
JOptionpane.showMessageDialog(
null,
s+"的平方为:"+m,
"标题:平方",
JOptionPane.PLAN_MESSAGE);
System.exit(0); }
}
正确的
import javax.swing.JOptionPane;
class Square {
public static void main(String[] args)
{
String s=JOptionPane.showInputDialog("输入一个整数:");
int n=Integer.parseInt(s);
int m=n*n;
JOptionPane.showMessageDialog(
null,
s+"的平方为:"+m,
"标题:平方",
JOptionPane.PLAIN_MESSAGE);
System.exit(0);
}
}
那个地方不对啊,我怎么看不出来
----------------解决方案--------------------------------------------------------
你应该仔细一点儿啊,
看你不对的那个
int n=lnteger.parselnt(s);
是不是写成1了?
应该是Integer.parseInt(s);
----------------解决方案--------------------------------------------------------
错误一:把I都写成了L
错误二:import 中的都是.号
错误三:PLAIN_MESSAGE
都是不仔细惹的祸
----------------解决方案--------------------------------------------------------