- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,在我的基本 Java 计算器代码中,该代码似乎只在第一次运行。我找不到问题的根源,但可能与清晰的功能有关。我真的是一个 Java 菜鸟,非常感谢更有经验的编码人员提供的任何帮助!
package Calculator;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class Calculator extends JFrame implements ActionListener {
/**
*
*/
private static final long serialVersionUID = 1L;
JButton num1, num2, num3, num4, num5, num6, num7, num8, num9, num0, add, sub, div, times, equals, exit, point, reset;
JTextField txtfld;
static String s = "", func = "";
int flag = 0;
static double total1;
double first, second;
Double toDouble(String a) {
double i = Double.parseDouble(a);
return i;
}
void total(double first, double second, String func) {
String total;
if ("+".equals(func)) {
total1 = first + second;
// System.out.println(first+"\n"+second+"\n"+sum);
total = Double.toString(total1);
txtfld.setText(total);
} else if ("-".equals(func)) {
total1 = first - second;
total = Double.toString(total1);
txtfld.setText(total);
} else if ("*".equals(func)) {
total1 = first * second;
total = Double.toString(total1);
txtfld.setText(total);
} else if ("/".equals(func)) {
total1 = first / second;
total = Double.toString(total1);
txtfld.setText(total);
}
}
public Calculator() {
Container content = getContentPane();
content.setLayout(new FlowLayout());
JLabel jl = new JLabel(" Java GUI Calculator ");
txtfld = new JTextField(15);
num1 = new JButton(" 1 ");
num2 = new JButton(" 2 ");
num3 = new JButton(" 3 ");
num4 = new JButton(" 4 ");
num5 = new JButton(" 5 ");
num6 = new JButton(" 6 ");
num7 = new JButton(" 7 ");
num8 = new JButton(" 8 ");
num9 = new JButton(" 9 ");
num0 = new JButton(" 0 ");
add = new JButton(" + ");
sub = new JButton(" - ");
div = new JButton(" / ");
times = new JButton(" * ");
equals = new JButton(" = ");
exit = new JButton(" Exit ");
point = new JButton(" . ");
reset = new JButton("C");
reset.setBackground(Color.RED);
num1.addActionListener(this);
num2.addActionListener(this);
num3.addActionListener(this);
num4.addActionListener(this);
num5.addActionListener(this);
num6.addActionListener(this);
num7.addActionListener(this);
num8.addActionListener(this);
num9.addActionListener(this);
num0.addActionListener(this);
add.addActionListener(this);
sub.addActionListener(this);
times.addActionListener(this);
div.addActionListener(this);
equals.addActionListener(this);
exit.addActionListener(this);
point.addActionListener(this);
reset.addActionListener(this);
content.add(jl);
content.add(txtfld);
content.add(num1);
content.add(num2);
content.add(num3);
content.add(add);
content.add(num4);
content.add(num5);
content.add(num6);
content.add(sub);
content.add(num7);
content.add(num8);
content.add(num9);
content.add(div);
content.add(num0);
content.add(point);
content.add(times);
content.add(equals);
content.add(reset);
content.add(exit);
}
public static void main(String arg[]) {
Calculator jf = new Calculator();
jf.setSize(230, 250);
jf.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
Object o = e.getSource();
if (o == num1) {
txtfld.setText(s.concat("1"));
s = txtfld.getText();
} else if (o == num2) {
txtfld.setText(s.concat("2"));
s = txtfld.getText();
} else if (o == num3) {
txtfld.setText(s.concat("3"));
s = txtfld.getText();
} else if (o == num4) {
txtfld.setText(s.concat("4"));
s = txtfld.getText();
} else if (o == num5) {
txtfld.setText(s.concat("5"));
s = txtfld.getText();
} else if (o == num6) {
txtfld.setText(s.concat("6"));
s = txtfld.getText();
} else if (o == num7) {
txtfld.setText(s.concat("7"));
s = txtfld.getText();
} else if (o == num8) {
txtfld.setText(s.concat("8"));
s = txtfld.getText();
} else if (o == num9) {
txtfld.setText(s.concat("9"));
s = txtfld.getText();
} else if (o == num0) {
txtfld.setText(s.concat("0"));
s = txtfld.getText();
} else if (o == add) {
txtfld.setText("");
first = toDouble(s);
System.out.println(first);
s = "";
func = "+";
} else if (o == sub) {
txtfld.setText("");
first = toDouble(s);
s = "";
func = "-";
} else if (o == times) {
txtfld.setText("");
first = toDouble(s);
s = "";
func = "*";
} else if (o == div) {
txtfld.setText("");
first = toDouble(s);
s = "";
func = "/";
} else if (o == equals) {
if (flag == 0) {
second = toDouble(s);
total(first, second, func);
flag = 1;
} else if (flag == 1) {
second = toDouble(s);
total(total1, second, func);
}
System.out.println(first);
} else if (o == exit) {
System.exit(0);
} else if (o == point) {
txtfld.setText(s.concat("."));
s = txtfld.getText();
}
if (o == reset) {
total1 = 0;
txtfld.setText("");
s = txtfld.getText();
}
}
}
最佳答案
试试这个,效果很完美
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.java.util.test;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import javax.swing.JFrame;
/**
*
* @author shreyansh.jogi
*/
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class JavaApplication2 extends JFrame implements ActionListener {
/**
*
*/
private static final long serialVersionUID = 1L;
JButton num1, num2, num3, num4, num5, num6, num7, num8, num9, num0, add, sub, div, mult, equalto, exit, point, reset;
JTextField txtfld;
String s = "", ope = "";
int flag = 0;
double total1;
double first, second;
Double toDouble(String a) {
double i = Double.parseDouble(a);
return i;
}
void total(double first, double second, String ope) {
String total;
if (ope.equalsIgnoreCase("+")) {
total1 = first + second;
// System.out.println(first+"\n"+second+"\n"+sum);
total = Double.toString(total1);
txtfld.setText(total);
} else if (ope.equalsIgnoreCase("-")) {
total1 = first - second;
total = Double.toString(total1);
txtfld.setText(total);
} else if (ope.equalsIgnoreCase("*")) {
total1 = first * second;
total = Double.toString(total1);
txtfld.setText(total);
} else if (ope.equalsIgnoreCase("/")) {
total1 = first / second;
total = Double.toString(total1);
txtfld.setText(total);
}
clearfields();
}
public JavaApplication2() {
Container content = getContentPane();
content.setLayout(new FlowLayout());
JLabel jl = new JLabel(" Calculator ");
txtfld = new JTextField(15);
num1 = new JButton(" 1 ");
num2 = new JButton(" 2 ");
num3 = new JButton(" 3 ");
num4 = new JButton(" 4 ");
num5 = new JButton(" 5 ");
num6 = new JButton(" 6 ");
num7 = new JButton(" 7 ");
num8 = new JButton(" 8 ");
num9 = new JButton(" 9 ");
num0 = new JButton(" 0 ");
add = new JButton(" + ");
sub = new JButton(" - ");
div = new JButton(" / ");
mult = new JButton(" * ");
equalto = new JButton(" = ");
exit = new JButton(" Exit ");
point = new JButton(" . ");
reset = new JButton("C");
reset.setBackground(Color.RED);
num1.addActionListener(this);
num2.addActionListener(this);
num3.addActionListener(this);
num4.addActionListener(this);
num5.addActionListener(this);
num6.addActionListener(this);
num7.addActionListener(this);
num8.addActionListener(this);
num9.addActionListener(this);
num0.addActionListener(this);
add.addActionListener(this);
sub.addActionListener(this);
mult.addActionListener(this);
div.addActionListener(this);
equalto.addActionListener(this);
exit.addActionListener(this);
point.addActionListener(this);
reset.addActionListener(this);
content.add(jl);
content.add(txtfld);
content.add(num1);
content.add(num2);
content.add(num3);
content.add(add);
content.add(num4);
content.add(num5);
content.add(num6);
content.add(sub);
content.add(num7);
content.add(num8);
content.add(num9);
content.add(div);
content.add(num0);
content.add(point);
content.add(mult);
content.add(equalto);
content.add(reset);
content.add(exit);
}
public static void main(String arg[]) {
JavaApplication2 jf = new JavaApplication2();
jf.setSize(230, 250);
jf.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
Object o = e.getSource();
if (o == num1) {
txtfld.setText(s.concat("1"));
s = txtfld.getText();
} else if (o == num2) {
txtfld.setText(s.concat("2"));
s = txtfld.getText();
} else if (o == num3) {
txtfld.setText(s.concat("3"));
s = txtfld.getText();
} else if (o == num4) {
txtfld.setText(s.concat("4"));
s = txtfld.getText();
} else if (o == num5) {
txtfld.setText(s.concat("5"));
s = txtfld.getText();
} else if (o == num6) {
txtfld.setText(s.concat("6"));
s = txtfld.getText();
} else if (o == num7) {
txtfld.setText(s.concat("7"));
s = txtfld.getText();
} else if (o == num8) {
txtfld.setText(s.concat("8"));
s = txtfld.getText();
} else if (o == num9) {
txtfld.setText(s.concat("9"));
s = txtfld.getText();
} else if (o == num0) {
txtfld.setText(s.concat("0"));
s = txtfld.getText();
} else if (o == add) {
txtfld.setText("");
first = toDouble(s);
System.out.println(first);
s = "";
ope = "+";
} else if (o == sub) {
txtfld.setText("");
first = toDouble(s);
s = "";
ope = "-";
} else if (o == mult) {
txtfld.setText("");
first = toDouble(s);
s = "";
ope = "*";
} else if (o == div) {
txtfld.setText("");
first = toDouble(s);
s = "";
ope = "/";
} else if (o == equalto) {
if (flag == 0) {
second = toDouble(s);
total(first, second, ope);
flag = 1;
} else if (flag == 1) {
second = toDouble(s);
total(first, second, ope);
}
System.out.println(first);
} else if (o == exit) {
System.exit(0);
} else if (o == point) {
txtfld.setText(s.concat("."));
s = txtfld.getText();
}
if (o == reset) {
txtfld.setText("");
s = txtfld.getText();
total1 = 0;
}
}
private void clearfields() {
first=0;
second=0;
ope="";
flag = 0;
total1 = 0;
s="";
}
}
//System.out.println(stem[0]);
关于java - 计算器仅在第一次运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17342013/
我目前正在尝试使用 ParaView Calculator-Filter 将给定的笛卡尔坐标 (x,y,z) 转换为球坐标 (r, theta, phi),其中 theta 是极角,phi 是方位角。
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我有这个问题,我想显示如果0/0,输出是:“不能将0除以自身”。如何调整我的代码以便可以显示该输出?如果是这样,我应该使用什么代码才能实现我的目标? 下面是我的代码: #include using
我正在尝试创建一个也支持负数的计算器,并最终创建一个 lisp 风格的树。 我像这样定义词法分析器规则: INT :'-'? [0-9]+ ; LBRACKET : '('; RBRACKET :
我正在开发一个基本的 JavaScript 计算器,我也希望能够开始计算负数。现在,如果我在输入数字之前单击“-”,“-”将不会显示,因此我只能从正数开始。有人可以告诉我如何将其包含在我的代码中吗?
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
这是我第一次尝试 Java。该项目是一个计算器,它需要一个数字、一个运算符(operator)信号(+、-、*、/)和另一个数字来创建方程并给出其最终值,然后询问用户是否要重新启动程序另一个方程或不是
所以我写了这个脚本;它有点像我找到并拼凑起来的计算器的大杂烩。 KeyListener 来自 Java - oracle - .com 网站。顺便说一句,我对此非常陌生,不知道我在做什么。 我正在尝试
我正在尝试创建一个也支持负数的计算器,并最终创建一个 lisp 风格的树。 我像这样定义词法分析器规则: INT :'-'? [0-9]+ ; LBRACKET : '('; RBRACKET :
我正在开发一个基本的 JavaScript 计算器,我也希望能够开始计算负数。现在,如果我在输入数字之前单击“-”,“-”将不会显示,因此我只能从正数开始。有人可以告诉我如何将其包含在我的代码中吗?
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我开始在java中创建一个计算器,我试图循环遍历字符串输入,如果输入中有任何整数,则将它们添加到ArrayList calcOperands中。在 parseInput() 方法中,我使用 charA
我正忙着制作计算器,但不知怎的,整数没有被使用,我不知道为什么。我尝试修复它,但我不知道该怎么做。我使用带有事件的按钮来计算答案,也许有问题。这是我的代码:顺便说一句,我使用 Eclipse
我的主类中有这段代码。我的问题是,GPA 是用总分除以类(class)来计算的。它没有给我完整的号码。 EX,如果总数为 14,类(class)为 4,则为 3.5,我的代码只给我 3.0。有谁知道为
我需要创建一个可以加、减、乘、除、绝对值和舍入的计算器。这是我到目前为止所拥有的 import java.util.Scanner; public class Calculator { pub
我是一名 Java Noob,正在研究 GUI 计算器,但我刚刚来到这里..我已经有了按钮,我需要绑定(bind)这些数字并存储在运算符 ( + - */) 之间的某个位置以显示在我的 JTextAr
这是我的作业。但是,我无法让结果发挥作用。我希望它打印出来为: > 2*7*6 2 * 7 ---- 14 * 6 ---- 84 等等。我希望无论我输入多少个数字,代码都能正常工作
这个问题已经有答案了: What does a "Cannot find symbol" or "Cannot resolve symbol" error mean? (18 个回答) 已关闭 6 年
大家好,感谢您帮助我。 我用 C# 制作了这个计算器,但遇到了一个问题。 当我添加像 5+5+5 这样的东西时,它给了我正确的结果,但是当我想减去两个以上的数字并且还想除或乘以两个以上的数字时,我没有
我一直在开发计算器作为自己的学习项目。它工作正常,只是我无法弄清楚如何阻止人们添加应用程序破坏输入,例如 1++-*/4。我尝试了各种方法,例如将当前显示拆分为一个数组,并将其与具有所有运算符的另一个
我是一名优秀的程序员,十分优秀!