「java计算式」java实现公式计算
本篇文章给大家谈谈java计算式,以及java实现公式计算对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
本文目录一览:
java计算式
import java.util.Scanner;
public class math {
public static void main(String[] args) {
while (true) { //无限循环
System.err.println("请输入数字:");
int read = new Scanner(System.in).nextInt(); //输入的数字
if(read0) {
System.err.println("输入的数据有错误");
continue;
}
int sum = 0;
for (int i = 0; i = read; i++) {
sum += i;
}
System.err.println(sum);
}
}
}
如何用java实现一个计算公式
//是这个意思 ?
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
public class Script {
public static void main(String[] args) throws ScriptException {
ScriptEngine se = new ScriptEngineManager().getEngineByName("JavaScript");
//EBIT = (P-V)*Q-F
double p = 2.0;
double v = 1.0;
double q = 3;
double f = 1.2;
String expression = "EBIT = (" + p +"-" + v +")* "+ q + "-"+f;
Double value = (Double) se.eval(expression);
System.out.println(value);
}
}
java运算
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
int num=1;
int countRight=0;
int countError=0;
while(num5){
Random rnd = new Random();
int num1=rnd.nextInt(100);
int num2=rnd.nextInt(100);
System.out.println("问题:"+num1+"+"+num2+"=");
System.out.print("请输入答案:");
int answer=input.nextInt();
int total=num1+num2;
if(answer==total){
countRight++;
}else{
countError++;
}
num++;
}
System.out.println("您答对了"+countRight+"道题,答错了"+countError+"道题。");
}
java计算简单的数学公式.
public class Demo2 {
public static void main(String[] args) {
double price = 100.0 ;//单价
int nums = 200;//数量
double total;//总价
total = price*nums;// 计算总价
double profit ;//利润
double cost=12000;//成本
double tax=0.17;//税率
profit = (total-cost)*(1-tax); //计算利润
System.out.println("利润:"+profit+"元");//输出利润
}
}
运行测试
利润:6640.0元
java基础习题里的复利计算公式?
设每年购买为P,购买n年,利率为r,则第n年结束时,最后一年购买的P,变成了P(1+r)
倒数第二年:P(1+r)²,第一年 P(1+r)的n-1次方
这是个等比数列,等比数列求和总会吧?
Sn = a1 * (1-q的n次方) / (1-q)
这里q = 1+r
= P((1+r) + (1+r)²...+(1+r)的n-1次方) = P((1+r)^n-1) / (1+r -1) = P((1+r)^n-1)/r
关于java计算式和java实现公式计算的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。
发布于:2022-11-28,除非注明,否则均为
原创文章,转载请注明出处。