Sample Testcase 0: Input: 1.04667 5 Output: 0.5004572 Sample Testcase 1: Input: 1.04667 20 Output: Invalid 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 double x; 9 int k; 10 double sum = 0; 11 cin>>x; 12 cin>>k; 13 14 // Write your code here 15 16 17 18 // End Your code 19 cout<

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
C++ Help me plz
7:37 D
Û
cpe-pc.ju.edu.jo/cours
+
ONS
6
Sample Testcase 0:
Input:
1.04667
5
Output:
0.5004572
Sample Testcase 1:
Input:
1.04667
20
Output:
Invalid
1 #include <iostream>
2 #include <cmath>
3 #include <iomanip>
4 using namespace std;
5
6 int main()
7
{
8
double x;
9
int k;
10
double sum = 0;
11
cin>>x;
12
cin>>k;
13
14
// Write your code here
15
16
17
18
// End Your code
19
cout<<fixed<<setprecision (7)
<<sum;
20
return
0.
:
Transcribed Image Text:7:37 D Û cpe-pc.ju.edu.jo/cours + ONS 6 Sample Testcase 0: Input: 1.04667 5 Output: 0.5004572 Sample Testcase 1: Input: 1.04667 20 Output: Invalid 1 #include <iostream> 2 #include <cmath> 3 #include <iomanip> 4 using namespace std; 5 6 int main() 7 { 8 double x; 9 int k; 10 double sum = 0; 11 cin>>x; 12 cin>>k; 13 14 // Write your code here 15 16 17 18 // End Your code 19 cout<<fixed<<setprecision (7) <<sum; 20 return 0. :
7:37
Û
cpe-pc.ju.edu.jo/cours
+
6
In this task, you are required to write a code
which takes as an input an angle [0°, 90°] in
radians and returns the approximate value of
the cosine of this angle. The code will also take as
an input the number of terms to be used to
approximate the result.
We will use the Maclaurin series of cos(x) to
approximate the result. The series is given by:
cos(x)
=
-0
-1" 2n
(2n!)
but for practical reasons, we will not use infinite
terms but k terms where k is input by the user:
cos(x) k -12n
n=0 (2n!)
So, for example, to calculate the cosine for 60°
(1.04667 radians) using five terms, the
approximation will be:
1.04667² 1.046674
+
1
1.046678
1.046676
6!
+
2!
4!
8!
The program should at most handle 15
terms (to avoid overflows due to factorial),
otherwise the program outputs Invalid
• There should be at least three terms used in
the approximation, otherwise the program
outputs Invalid
If the number of terms is negative, the
programs corrects it automatically to
positive.
• If the angle is out of range, the program
outputs Invalid
1/0
Program Input:
• A single line that takes in any angle (in
radians)
• A single line that takes in the number
of terms to use in the approximation
Program Output:
• A single line that outputs the
approximate value of the cosine
M
:
0.50046-
Transcribed Image Text:7:37 Û cpe-pc.ju.edu.jo/cours + 6 In this task, you are required to write a code which takes as an input an angle [0°, 90°] in radians and returns the approximate value of the cosine of this angle. The code will also take as an input the number of terms to be used to approximate the result. We will use the Maclaurin series of cos(x) to approximate the result. The series is given by: cos(x) = -0 -1" 2n (2n!) but for practical reasons, we will not use infinite terms but k terms where k is input by the user: cos(x) k -12n n=0 (2n!) So, for example, to calculate the cosine for 60° (1.04667 radians) using five terms, the approximation will be: 1.04667² 1.046674 + 1 1.046678 1.046676 6! + 2! 4! 8! The program should at most handle 15 terms (to avoid overflows due to factorial), otherwise the program outputs Invalid • There should be at least three terms used in the approximation, otherwise the program outputs Invalid If the number of terms is negative, the programs corrects it automatically to positive. • If the angle is out of range, the program outputs Invalid 1/0 Program Input: • A single line that takes in any angle (in radians) • A single line that takes in the number of terms to use in the approximation Program Output: • A single line that outputs the approximate value of the cosine M : 0.50046-
Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY