Computer Applications
Write the Java expression for the following:
Java Operators
9 Likes
Answer
double m = 2 / 3 * (a * a - b * b) * h
Answered By
8 Likes
Related Questions
Predict the output and the number of times the loop runs:
class Test { public static void main(String args[]) { int i; for(i=0;i<5;i++) System.out.println(i-i*i); } }
Write the Java expression for the following:
State the difference between = and ==.
Distinguish between a continuous loop and a step loop