不行。。。
追答哦。那算了吧。我看不了图片,也不知道你的需求。
分数很多哦。。。
用JAVA编写的科学计算器源代码
以下是一个简单的用Java编写的科学计算器的源代码示例:java import java.util.Scanner;public class ScientificCalculator { public static void main(String[] args) { Scanner scanner = new Scanner(System.in);System.out.println("Welcome to the Scientific Calculator!");System.out.println("Ente...
java最基础的代码(java基础代码实例)
importjavax.swing.*;importjavax.swing.border.Border;importjava.awt.*;importjava.awt.event.ActionListener;importjava.awt.event.ActionEvent;importjava.math.BigDecimal;importjava.math.RoundingMode;importjava.util.HashMap;\/ 我的计算器。MyCalculator继承于JFrame,是计算器的界面 \/ publicclassCalcul...
求JAVA编写的 简易计算器程序,附上注释
import java.awt.*;import java.awt.event.*;public class Calculator implements ActionListener { String s="",s1;double d1,d2;JFrame jf = new JFrame("小计算器by Graduate") ;JTextField tf = new JTextField();public void init()\/\/实现计算器界面 { Container c=jf.getContentPane();...
用java编得计算器程序软件和源代码
import javax.swing.*; import java.awt.event.*; class calculation extends JFrame {public calculation() \/*构造方法*\/ {super("计数器"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); initTextPanel(); \/*文本框*\/ initControlPanel(); \/*控制键*\/ initKeyPanel(); \/*数字和运算符...
用JAVA编写一个计算器
\/\/ 计算器数字按钮定义面板class Number_Key extends JPanel {\/*** *\/private static final long serialVersionUID = 1L;JButton zero = new JButton("0"); \/\/ 数字键0JButton one = new JButton("1"); \/\/ 数字键1JButton two = new JButton("2"); \/\/ 数字键2JButton three = new JButton...
java怎样写一个简单的计算器
以下是一个简单的例子,这个计算器可以执行加、减、乘、除操作:import java.util.Scanner;public class Calculator { public static void main(String[] args) { Scanner scanner = new Scanner(System.in);System.out.println("Enter first number:");double num1 = scanner.nextDouble();System....
java计算器源代码
} private void initComponents() { jPanel1 = new javax.swing.JPanel();jLabel1 = new javax.swing.JLabel();jLabel2 = new javax.swing.JLabel();jLabel3 = new javax.swing.JLabel();num1 = new javax.swing.JTextField();num2 = new javax.swing.JTextField();result = new javax...
java 写的计算器源代码只实现加减乘除四则运算即可
JFrame frame=new JFrame("sunshine---计算器");JTextField jg_TextField=new JTextField(jg,20);\/\/20列 JButton clear_Button=new JButton("清除");JButton button0=new JButton("0");JButton button1=new JButton("1");JButton button2=new JButton("2");JButton button3=new JButton...
求一个java计算器原代码,最好有文档说明。
f=new Frame("计算器");p=new Panel();p.setLayout(new GridLayout(4,4));tf=new TextField(30);b1=new Button("7");b2=new Button("8");b3=new Button("9");b4=new Button("+");b5=new Button("4");b6=new Button("5");b7=new Button("6");b8=new Button("-");b9=...
求JAVA计算器源代码!!!
f=new JFrame("计算器");p=new Panel();\/\/运算界面p p.setLayout(new GridLayout(4,4)); \/\/ 设置p的布局为GridLayout,四行四列 tf=new TextField(30);\/\/实例化按钮 b1=new Button("7");b2=new Button("8");b3=new Button("9");b4=new Button("+");b5=new Button("4");b6...