Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions