Question: The goal of this assignment is to create a java program that calculates the position of the particle over a time and save it in

The goal of this assignment is to create a java program that calculates the position of the particle over a time and save it in a file

Consider the position of a particle moving along the x-axis is given by

x(t)=4.02.0t

where t is time in second.

1.Write a method named calculatePosition that accepts as argument time of double type. The method calculates and returns the position of the particle. Use the above equation.

2.In main method create a text file to write a data

3.Starting from t=0.0 to t=20.0 seconds, repeatedly:

Call calculatePosition method.

Save the time and the returned position of the particle to the file.

The file should contain two columns that represent the time and the position respectively:

0.04.0

1.02.0

........

20.0-36.0

4.Close the file.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!