Write a program with only C programming
Programming
1. Create a script that will take user input of 3 vertices to calculate the area of a triangle by using
Heron’ Formula. You will need the “pow” function in “math.h” header file.
2. Create a script that will solve a set of simultaneous equations.
3. Create a script that will find the roots of quadratic equations “x
2+3.8x+3.25=0” by using
continuously changing the value of x within a certain range (I.E: -10<=x<=10. )
4.Create a script that will find the sum of the all multiples of 3 between two user input integers by using
For Loop.
5. Create a script that will find all the prime numbers between user input integers.
6. Create a script with if, else if, and else conditionals to calculate the Total Resistance (R_T)
7. Repeat problem 6. This time use “switch”.
