Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed
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

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

Introduction to Wireless and Mobile Systems

Authors: Dharma P. Agrawal, Qing An Zeng

4th edition

1305087135, 978-1305087132, 9781305259621, 1305259629, 9781305537910 , 978-130508713

More Books

Students also viewed these Programming questions