Use the C programming language.
Create a script that will solve a set of simultaneous equations:
ax + by = c
dx + ey = f
a, b, c, d, e, and f are user input.
ce - bf x = pq - an
af - cd ae - bd
Your script should be able to calculate x and y.
Also, the script should ask the user whether he/she would like to continue finding answers for other equations and then continue with the answer "Y".
Your output should have the format:
"With the given values of a, b, d, e, and f, the answer for x is Answer and y is Answer.