Question: this is C++ question .please teach me the ALGORITHM (PROCEDURE STEPS) /pseudocode Q6. A force, F in 0 direction can be resolved into 2 components:

this is C++ question .please teach me the ALGORITHM (PROCEDURE STEPS) /pseudocode

this is C++ question .please teach me the ALGORITHM (PROCEDURE STEPS) /pseudocode

Q6. A force, F in 0 direction can be resolved into 2 components: F,=Fcos0 and Fy =Fsin0 such as shown in the following dia gram. F Fy Fx X Write a program that ask user to inputa value of F. Then the program calculate the components Fx and Fy for the following angles: 0 0,30,60,...,360. Form a schedule the shows the values for F, and F, for thoseangles. Sample output: For force = 100.00 N, Theta Fx Fy 0.00 100.00 0.00 15.00 96.60 25.87 30.00 86.62 49.98 45.00 70.74 70.68 60.00 50.05 86.58 75.00 25.95 96.58 90.00 0.00 100.00 Answer: #include #include #include using namespace std; int main () double angR, angD=0, F=100, Fx, Fy; const double PAI=3.14; int count=1; cout

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!