
I having troubles running this C linux program.
please use my code to fix any errors that need to be removed or added.
If it needs sin() cos() tan() - Please add
displayTriTab
• Receive an integer called degrees that represents the number of degree for incrementation and return nothing.
• Display the heading “--- TRIGONOMETRIC TABLE ---” center over the table
•A blank line
• Display the column headings as sown on the output.
• A blank line.
• Produce a table based from 0 to 360 degrees in increments based on the users input.
• The table columns will be as follows:
1. Degrees ( Format: Right justified, no decimal places)
2. The radian value for the number of degrees in column 1
3. The sine value for the degrees in column
4. The cosine value for the degrees in column
5. The tangent value for the degrees in column
6. Tangent values for 90 and 270 will be infinity
• The 360 degrees row will always be the last row even if the increment value entered would not
[Bold] the code I do not understand how to write as confused



Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- Create an array of three string values that the fullName variable will use as a point of reference. Make an initialization list for the array using string values for the first, middle, and last names.arrow_forward1. Which of these is an incorrect Statement? a. Array can be initialized using comma separated expressions surrounded by curly braces b. It is necessary to use new operator to initialize an array c. Array can be initialized when they it is declared d. all of the abovearrow_forwardPlease help me figure out what I’m doing wrong (JavaScript)arrow_forward
- I need to write a program named Search.java that uses a function called search_string to check whether a string exists in the array or not. 1- The array of strings is iterated using a for loop and the value at every index is compared with the value to be searched in the array. 2- A boolean variable is set if any array value matches with the string. 3- At the end of the loop, this boolean variable is checked to determine if the array contains the string. It may be necessary to import java.util.Arrays then use Arrays.toString, String equals(). Output should be as picture showsarrow_forwardmain.cc file #include "robotutils/robotclicklistener.h" //// You do not need to edit this file.// // Helper function to create robot*.bmp. Feel free to make your own// icons and use this for inspiration./*void CreateRobotIcon() { graphics::Image image(31, 31); // Arms image.DrawLine(0, 10, 10, 15, 109, 131, 161, 6); image.DrawLine(30, 10, 10, 15, 109, 131, 161, 6); // Legs image.DrawLine(10, 15, 10, 30, 109, 131, 161, 6); image.DrawLine(20, 15, 20, 30, 109, 131, 161, 6); // Body image.DrawRectangle(5, 0, 20, 22, 130, 151, 179); // Eyes image.DrawCircle(10, 8, 2, 255, 255, 255); image.DrawCircle(20, 8, 2, 255, 255, 255); image.DrawCircle(9, 8, 2, 62, 66, 71); image.DrawCircle(19, 8, 2, 62, 66, 71); image.SaveImageBmp("robot.bmp");}*/ int main() { RobotClickListener listener{}; listener.Start(); return 0;} robot.cc file #include "robot.h" #include <string> #include "cpputils/graphics/image.h" // ========================= YOUR CODE HERE =========================//…arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





