我有以下一行代码:
variableDoubleValue = ((10*variableDoubleA) + (6.25*variableDoubleB) – (5*variableByteC) + 5);
如何用Java可理解的代码编写它?
答案 0 :(得分:1)
根据我从您的问题推断,您需要基于Java语言的变量声明和赋值。
嗯,如果是这种情况,那么结果将是: -
//public class MathemathicalExpression{
// public static void main(String[] args){
// Double A=some_value,B=some_value,Value=0; considering A,B and Value to be of type Double
// Byte C=some_value; considering C to be of type Byte.
Value = 10 * A + 6.25 * B - 5 * C + 5;
// }
//}