Question: answer this 4 problem read instructions please i need na c ++ file put it in the link provided , separate the four files https://drive.google.com/drive/folders/15bnP_QZghTn4JJ92oP_nM6sp17IgwIKc

answer this 4 problem read instructions

please i need na c ++ file put it in the link provided , separate the four files

https://drive.google.com/drive/folders/15bnP_QZghTn4JJ92oP_nM6sp17IgwIKc

answer this 4 problem read instructions please ianswer this 4 problem read instructions please ianswer this 4 problem read instructions please ianswer this 4 problem read instructions please i
PROBLEM 1 PROBLEM 4 In a right triangle, the square of the length of one side is equal to the sum of the squares of the lengths of the other two sides. Write a program that prompts the user to enter the lengths Write a program of the three sides of a triangle and output a message indicating whether the triangle is a right that will request triangle. the user to type PROBLEM 2 integers until a zero or a negative Create a program which prompts the user for a Celsius temperature and convert the is typed. Show the temperature into Fahrenheit, Kelvin and Rankine scales, respectively. Do not forget to print user: the converted temperature up to 2 decimal places. PROBLEM 3 a) how many integers typed in A regular polygon has n number of sides with each side of length s. were divisible by 7 The area of a regular polygon is given by: b) average of ns2 A = numbers typed in Atan ) excluding numbers divisible The perimeter of a polygon is equal to the length of the boundary of the polygon by 3 Write a C++ program that will output the area and the perimeter of a given regular polygon rounded off to four decimal places.23:33 X Q Console C Enter a temperature in Celsius: 37 X Error: Function round(((celsius*9/5)+32)*100) is not defined in current scope 3 thix X (+is (z(error file path):/var/mobile/Containers/Data/ Application/61AE4373-2173-4936-A7A0-DDB41FOE8A96/ Documents/PathResources/pythonout//copyScript.txt PARYTHIEm(wrong line): 13 ! ! return from main() function 6 Enter a temperature in Celsius: 15 3 #include Fahrenheit : 59.00 #include Kelvin: 288. 15 UT Rankine: 518.67 6 using namespace std; 7 8 - int main( ) { 9 double celsius, fahrenheit, kelvin, rankine; 10 11 cout > celsius; 13 14 fahrenheit = round(((celsius * 9/5) + 32) * 100) / 100.0; 15 kelvin = round((celsius + 273.15) * 100) / 100.0; 16 rankine = round((celsius + 273.15) * 9/5 * 100) / 100.0; 17 18 cout Process exited after 3.812 seconds with return value 0 #include Press any key to continue . #include 5 using namespace std; 6 7 int main() { double celsius; 9 cout > celsius; 11 12 // Convert to Fahrenheit 13 double fahrenheit = round(((celsius * 9/5) + 32) * 100) / 100.0; 14 15 // Convert to Kelvin 16 double kelvin = round((celsius + 273.15) * 100) / 100.0; 17 18 // Convert to Rankine 19 double rankine = round((celsius + 273.15) * 9/5 * 100) / 100.0; 20 21 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!