如何在 prograde 中使用一次 JOptionPane.showMessageDialog

您使用了多少次语句:JOptionPane.showMessageDialog?如果您的答案不止一次,请返回并修改您的代码,以便您只使用一个 JOptionPane.showMessageDialog


提示:考虑使用名为 output 的 String 类型变量


代码


如果(信用> = 120)


  {


     JOptionPane.showMessageDialog(null,"You've graduated!");


  }//end if


  else if(credit >= 90)


  {


     JOptionPane.showMessageDialog(null,"You're a senior.");


  }//end if


  else if(credit >= 60)


  {


     JOptionPane.showMessageDialog(null,"You're a junior.");


  }//end if


  else if(credit >= 30)


  {


     JOptionPane.showMessageDialog(null,"You're a sophomore.");


  }//end if


  else if(credit >=0)


  {


     JOptionPane.showMessageDialog(null,"You're a freshment.");


  }//end if



  else


  {

     JOptionPane.showMessageDialog(null,"invalid input");



慕斯709654
浏览 176回答 2
2回答

POPMUISE

//不要忘记导入JOptionPane库//我也不知道你是如何使用你的信用变量 public class prograde { public void showJoption(String position) { JOptionPane.showMessageDialog(null, position); }public static void main(String[] args){    //this is the class object that you can use to call the showJoption() method.    prograde display = new prograde();    if(credit >= 120)    {        display.showJoption("You've graduated!");    }    else if (credit >= 90)    {        display.showJoption("You're a senior.");    }    else if (credit >= 60)    {        display.showJoption("You're a junior.");    }    else if (credit >= 30)    {        display.showJoption("You're a sophomore.");    }    else if (credit >= 0)    {        display.showJoption("You're a freshment.");    }    else {        display.showJoption("invalid input");    }}   }

aluckdog

使用 if-else 语句生成要显示的字符串,然后使用单行调用showMessageDialog()使用该字符串。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java