你好,可以帮我用java编写一个简单计算器程序吗实现double数据类型的加减乘除

你好,可以帮我用java编写一个简单计算器程序吗实现double数据类型的加减乘除,第1张

public class JiSuanQi{

    public static void main(String[] args)throws Exception{

        double d1 = 123;

        double d2 = 230;

        double sum = 00;

        char ch = '+';

        switch(ch){

            case '+':

               sum = d1 + d2;

               break;

            case '-':

                sum = d1 - d2;

                break;

            case '':

                sum = d1  d2;

                break;

            case '/':

                sum = d1 / d2;

                break;

            default:

                Systemerrprintln("运算符错误!");

        }

        Systemoutprintln(d1+StringvalueOf(ch)+d2+"="+sum);

    }

}

public class Number {

private Integer n1;

private Integer n2;

/ 构造方法 /

public Number(Integer n1, Integer n2) {

super();

thisn1 = n1;

thisn2 = n2;

}

/ 加 /

public Integer addition() {

Systemoutprintln(thisn1 + thisn2);

return thisn1 + thisn2;

}

/ 减 /

public Integer subtration() {

Systemoutprintln(thisn1 - thisn2);

return thisn1 - thisn2;

}

/ 乘 /

public Integer multiplication() {

Systemoutprintln(thisn1 thisn2);

return thisn1 thisn2;

}

/ 除 /

public Integer division() {

Systemoutprintln(thisn1 / thisn2);

return thisn1 / thisn2;

}

public Integer getN1() {

return n1;

}

public void setN1(Integer n1) {

thisn1 = n1;

}

public Integer getN2() {

return n2;

}

public void setN2(Integer n2) {

thisn2 = n2;

}

}

public static void main(String[] args) {

Number number = new Number(1, 2);

numberaddition();

numbersubtration();

numbermultiplication();

numberdivision();

}

public class test{

public static void main(String args[]){

int sum=0;

for(int i=2;i<=1000;i+=2)

sum+=i;

Systemoutprintln(sum);

}

}

回答者:bengboba - 助理 三级 1-12 10:28

用这个吧,比较简单

以上就是关于你好,可以帮我用java编写一个简单计算器程序吗实现double数据类型的加减乘除全部的内容,包括:你好,可以帮我用java编写一个简单计算器程序吗实现double数据类型的加减乘除、一、编写Java程序,模拟简单的计算器。、写一个完整的JAVA程序使用循环结构计算2 4 6 8.... 1000的和并输出运算结果等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10104833.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存