编程:用户输入两个数,求出其加减乘除,并用消息框显示计算结果

import java.util.Scanner;
import javax.swing.JOptionPane;
public class FourOperationsOfTwoIntegers {
public static void main(String[] args)
{

String firstNumber, // first string entered by user
secondNumber; // second string entered by user
Double number1, // first number 
number2;// second number

// result of operation between number1 and number2

// read in first number from user as a string
firstNumber =
JOptionPane.showInputDialog( "Enter first integer" );

// read in second number from user as a string
secondNumber =
JOptionPane.showInputDialog( "Enter second integer" );

// convert numbers from type String to type int
number1 = Double.parseDouble( firstNumber ); 
number2 = Double.parseDouble( secondNumber );

// the operation of the numbers
double result1=0.0,result2=0.0,result3=0.0,result4=0.0;
result1=number1+number2;
result2=number1-number2;
result3=number1*number2;

String str="俩数之和:"+number1+"+"+number2+"="+result1+"\n"
+"俩数之差:"+number1+"-"+number2+"="+result2+"\n"
+"俩数之积:"+number1+"x"+number2+"="+result3+"\n";
if(number2==0) {str+="The divisor "+number2+" is zero.Fail to divide!!!";}
else {result4=number1/number2;
str+="俩数之商:"+number1+"/"+number2+"="+result4+"\n";
}

JOptionPane.showMessageDialog(null, str,"任意两数的四则运算:",JOptionPane.INFORMATION_MESSAGE,null);

System.exit( 0 ); // terminate the program

}
}

时间: 2024-10-10 17:44:40

编程:用户输入两个数,求出其加减乘除,并用消息框显示计算结果的相关文章

编写一个程序,用户输入两个数,求出其加减乘除,并用消息框显示计算结果

编写一个程序,用户输入两个数,求出其加减乘除,并用消息框显示计算结果 import javax.swing.JOptionPane; public class Test{ public static void main(String[] args) { int n1=Integer.parseInt(JOptionPane.showInputDialog("Input number 1: ")); int n2=Integer.parseInt(JOptionPane.showInpu

编写一个程序,用户输入两个数,求其加减乘除,并用消息框显示计算结果。

代码: //an complex program import javax.swing.JOptionPane;//import class JOptionPane public class Complex { public static void main(String[] args) { // TODO 自动生成的方法存根 String firstNumber,     //first string entered by user secondNumber;    //second stri

编程题:用一组数组做函数参数来实现,输入两个数,输出其中最大数

#include<stdio.h> float max(float x,float y) { float z; if(x>y)z=x; else z=y; return z; } void main() { float a[2],c; scanf("%f,%f",&a[0],&a[1]); c=max(a[0],a[1]); printf("%f,%f,the max is %f\n",a[0],a[1],c); } 编程题:用一组

剑指Offer(Java版)第四十题:在数组中的两个数字,如果前面一个数字大于后面的数字, 则这两个数字组成一个逆序对。输入一个数组,求出这个数组中的逆序对的总数P。 并将P对1000000007取模的结果输出。 即输出P%1000000007

/*在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对.输入一个数组,求出这个数组中的逆序对的总数P.并将P对1000000007取模的结果输出. 即输出P%1000000007 */ import java.util.*; public class Class40 { public int InversePairs(int[] array){ int length = array.length; int P = 0; for(int i = 0; i < lengt

【c语言】输入一组整数,求出最大子序列的和

// 输入一组整数,求出最大子序列的和. // 例如:序列: - 2 11 - 4 13 - 5 - 2,则最大子序列和为20. // 序列: - 6 2 4 - 7 5 3 2 - 1 6 - 9 10 - 2,则最大子序列和为16 #include <stdio.h> int Max_Son(int *p, int len) { int Max_Sum = 0; int i, j; for (i = 0; i < len; ++i) { int sum = 0; for (j = i

html js在页面中输入两个数计算和

费了很大功夫,之前写的跟这个差不多,但是就是不能正常运行,找不到原因,这个搞定的记录一下 1 <html> 2 <head> 3 <title></title> 4 <meta name="generator" 5 content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39&qu

编程题:两个数比较大小,之后用变量t互换。

#include<stdio.h> void main() { float x,y,t; scanf("%f,%f",&x,&y); if(x<y) {t=x;x=y;y=t;} printf("%6.2f,%6.2f\n",x,y); } 流程图: 编程题:两个数比较大小,之后用变量t互换.,布布扣,bubuko.com

定义一个含有30个整型元素的数组,按顺序分别赋予从2开始的偶数;然后按顺序每五个数求出一个平均值,放在另一个数组中并输出

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> //定义一个含有30个整型元素的数组,按顺序分别赋予从2开始的偶数:然后按顺序每五个数求出一个平均值,放在另一个数组中并输出. var arr = []; var NewArr = []

输入两个数,第一个数决定一个nXn的矩阵,第二个数决定从1开始赋值,赋值的上限 (MD花了半天时间,思路不对害死人)

1 输入两个数,第一个数决定一个nXn的矩阵,第二个数决定从1开始赋值,赋值的上限 2 3 比如: 4 5 输入:5 18 6 7 输出: 8 9 1 2 3 4 5 10 11 16 17 18 0 6 12 13 15 0 0 0 7 14 15 14 0 0 0 8 16 17 13 12 11 10 9 18 19 20 21 输入: 4 12 22 23 输出: 24 25 1 2 3 4 26 27 12 0 0 5 28 29 11 0 0 6 30 31 10 9 8 7 32