百分比始终等于0

时间:2013-06-16 16:13:54

标签: java

我有这种方法。它基本上使用弹出窗口来显示简单的添加问题:

public static void addition ()
  {
    JFrame frame = new JFrame("");
    JOptionPane.showMessageDialog(frame, "++ You chose Addition! ++");
    double percentage;
    String rank = "";
    int i = 0;
    int x = 0;
    int y = 0;

    while (true){
      int add1 = (int)(Math.random()*9) + 1;
      int add2 = (int)(Math.random()*9) + 1;

      i = i + 1;

      int addtotal = add1 + add2;

      try{
        String test = JOptionPane.showInputDialog(frame, i + "). What's " + add1 + " + " + add2 + "?");


        if (test == null){
          choose();
        }

        int convertToNum = Integer.parseInt (test);

        if (convertToNum == addtotal){ // if the user got it right
          x++;
          final ImageIcon icon = new ImageIcon(new URL("http://cdn2.iconfinder.com/data/icons/basicset/tick_64.png")); //Custom Icon for the JFrame below, The image destination uses a URL link to show the icon
          JOptionPane.showMessageDialog(null, "Nice Job!\nYou Currently Got " + x + " Out of " + i + " Correct!",":D",JOptionPane.INFORMATION_MESSAGE,icon);
        }
        else { // if the user got it wrong
          JOptionPane.showMessageDialog(frame, "Sorry, but that was wrong.\n" + add1 + " + " + add2 + " = " + addtotal + " . \n You Currently Got " + x + " Out of " + i + " Correct!","Whoops",JOptionPane.INFORMATION_MESSAGE);
          y++;
        }
      }
      catch (Exception e){
        JOptionPane.showMessageDialog(frame, "I Didn't Understand That.","...",JOptionPane.ERROR_MESSAGE);
        y++;
      }

      System.out.println ("x: " +x); 
      System.out.println ("i: " +i);

      percentage = (x - y) / i * 100;
      System.out.println ("% :" + percentage);
    }
  }

说我不断变得完美,然后在交互窗格中显示percentage = 100.0。但是,如果我的一个问题出错了,而不是获得一个百分比数字,我会自动获得一个零(例如,我得到3分中的2分,percentage = 0而不是percentage = 66.6。我在宣布它时试图摆脱0,但它只给了我“变量可能没有被初始化”。

3 个答案:

答案 0 :(得分:1)

将括号内的一个整数操作数强制转换为double以使用浮点运算。

double percentage = ((double)x - y) / i * 100;

所有操作数(x,y,i和文字100)都是整数,因此使用整数算术除法,它将删除小数点后的所有内容。

答案 1 :(得分:0)

欢迎使用整数运算。

尝试percentage = ((double)x - y) / i * 100;

来自Chapter 15

  

乘法表达式的类型是其提升类型   操作数。
  如果提升的类型是int或long,那么整数算术   执行。
如果提升类型是float或double,那么   执行浮点运算。

答案 2 :(得分:0)

划分整数的问题是Java截断小数部分。您可以创建xy浮点变量,或者只是将它们转换为float以进行除法,然后将它们强制转换为最终结果。