Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Java 和网站的新手。首先,感谢您的任何意见,我很感激。
因此,对于家庭作业,我被要求使用对话输入并在一个语句中将其转换为双精度。我一直在搜索我的文本和网络几个小时无济于事。请问有人这么好心地指导我吗?我不想要答案,只是一个方向,谢谢!
double inputNum = Double.parseDouble(JOptionPane.showInputDialog(null, "Enter number"));
或对于 int:
int inputNum = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter number"));
经常咨询 API 可以回答很多问题。