Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.
Answer:
the answer how you analyzs the problwm
Answer:
The elevation at the high point of the road is 12186.5 in ft.
Explanation:
The automobile weight is 2500 lbf.
The automobile increases its gravitational potential energy in
. It means the mobile has increased its elevation.
The initial elevation is of 5183 ft.
The first step is to convert Btu of potential energy to adequate units to work with data previously presented.
British Thermal Unit -
Now we have the gravitational potential energy in lbf*ft. Weight of the mobile is in lbf and the elevation is in ft. We can evaluate the expression for gravitational potential energy as follows:
Where m is the mass of the automobile, g is the gravity, W is the weight of the automobile showed in the problem.
is the final elevation and
is the initial elevation.
Replacing W in the Ep equation
Finally, the next step is to replace the variables of the problem.
The elevation at the high point of the road is 12186.5 in ft.
Answer:
(a) The force sustained by the matrix phase is 1802.35 N
(b) The modulus of elasticity of the composite material in the longitudinal direction Ed is 53.7 GPa
(c) The moduli of elasticity for the fiber and matrix phases is 124.8 GPa and 2.2 GPa respectively
Explanation:
Find attachment for explanation