Your friend in engineering has approached you for help in
starting a new business. She has developed a low cost, yet highly
durable kinetically charged sensor that can be put into the insole
of a shoe to measure the amount of force that the wearer of the
shoe applies in each step or jump. Your friend has a meeting with a
potential investor next week, and would like you to mock up a
windows form application demonstrating how repeated entries could
be tabulated into total and average amounts. Her sensor will send
the application data units of force for each measured impact
between the shoe and a surface. The sensor reads higher than the
actual values, so force reading will need to be reduced based on
their value.
Units of force over 1000, reduce by 25%
Units of force from 500 – 1000 reduce by 20%
Units of force from 250- 500 reduce by 15% Units of force from
50-250 reduce by 10%
Units of force from 0-50 reduce by 5%
Build a windows form that allows a user to enter in a unit of
force measured by the insole As the sensor reading will be higher
than the actual force, the form should show and adjusted force
value based on adjustment values presented above.
The form should show the actual amount of force from each
impact.
The form should show the number of impacts measured by the
insole
The form should show the total amount of force that the insole
has measured.
The form should show the average amount of force that the insole
has measured.
The form should provide a means for the user to clear out the
stored values.
Can someone please assist me with this program? It needs to be
able to run in Visual Studio 2012 using C#.
Thanks for your assistance in advance.