Question
The goal of this assignment is to I need to create a java program that calculates the position of the particle over a time and
The goal of this assignment is to I need 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.I need toWrite 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 I need to 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started