大家好,又见面了,我是你们的朋友全栈君。
import javax.swing.JOptionPane; import java.text.DecimalFormat; public class url { public static void main(String[] args) { String numStr,tstr1,tstr2,tstr3,tstr4,tstr5,result; int U,again; double t1,t2,t3,t4,t5,Q1,Q2,Q3,Q4,Q5,Q,n,e,N; do { numStr=JOptionPane.showInputDialog(“请输入电压: “);
U=Integer.parseInt(numStr); //第一个时间 tstr1=JOptionPane.showInputDialog(“请输入第一个时间: “);
t1=Double.parseDouble(tstr1);
Q1=(1.43E-14)/Math.pow(t1*(1 0.02*Math.sqrt(t1)),1.5)/U;
//第二个时间
tstr2=JOptionPane.showInputDialog(“请输入第二个时间: “);
t2=Double.parseDouble(tstr2);
Q2=(1.43E-14)/Math.pow(t2*(1 0.02*Math.sqrt(t2)),1.5)/U; //第三个时间 tstr3=JOptionPane.showInputDialog(“请输入第三个时间: “);
t3=Double.parseDouble(tstr3);
Q3=(1.43E-14)/Math.pow(t3*(1 0.02*Math.sqrt(t3)),1.5)/U; //第四个时间 tstr4=JOptionPane.showInputDialog(“请输入第四个时间: “);
t4=Double.parseDouble(tstr4);
Q4=(1.43E-14)/Math.pow(t4*(1 0.02*Math.sqrt(t4)),1.5)/U; //第五个时间 tstr5=JOptionPane.showInputDialog(“请输入第五个时间: “);
t5=Double.parseDouble(tstr5);
Q5=(1.43E-14)/Math.pow(t5*(1 0.02*Math.sqrt(t5)),1.5)/U; Q=(Q1 Q2 Q3 Q4 Q5)/5; n=Q/1.602E-19; DecimalFormat fmt=new DecimalFormat(“#”);
result=”结果n Q1 == “ Q1 ”n Q2==” Q2 ”n Q3==” Q3 ”n Q4==” Q4 ”n Q5==” Q5 ”nn Q的平均值:nQ==(Q1 Q2 Q3 Q4 Q5)/5==” Q ”nnn的值:n n==” n ”nn[n]的值为:n[n]==” fmt.format(n) ”nn基本电量e:ne==Q/[n]==” Q/Integer.parseInt(fmt.format(n));
JOptionPane.showMessageDialog(null,result);
again=JOptionPane.showConfirmDialog(null,”Do Another”);
} while (again==JOptionPane.YES_OPTION); } }
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/143164.html原文链接:https://javaforall.cn