创建一个程序,要求用户使用 for 循环输入 3 个数字,然后测试这些数字并按升序显示。
样本输入:5 2 7
样本输出:2 5 7
我坚持测试程序。我不知道如何测试这些数字,因为保存这些数字的变量只是一个变量并且在 for 循环内
这是我的示例代码:
import javax.swing.JOptionPane;
public class ascending
{
public static void main(String args[])
{
for(int x= 0; x<3;x++)
{
String Snum = JOptionPane.showInputDialog("Enter a number");
int num = Integer.parseInt(Snum);
}
<Here comes the program wherein I will test the 3 numbers inputted by the user and
display in ascending order. I don't know where to start. :'( >