다음은 이차방정식 x^2 - x - 1 = 0 의 양의 근 즉 황금비율(golden ratio)을 구하는 C 애플리케이션 소스이다. 황금비율을 구하는 비례방정식은 1 : x = x : (x+1) 이며, 이를 이차방정식으로 표현한 것이 x^2 - x - 1 = 0 이다.
See: Golden ratio - Sajun.org
- /*
- * Filename: testGoldenRatio.c
- * 황금률(즉, 이차방정식 x^2 - x - 1 = 0 의 양의 근)을 계산한다.
- *
- * Compile: cl testGoldenRatio.c
- *
- * Execute: testGoldenRatio
- *
- * Date: 2008/03/24
- * Author: PH Kim [ pkim (AT) scripts.pe.kr ]
- */
- #include <stdio.h>
- #include <string.h>
- #include <math.h>
- typedef struct _PAIR {
- double x1;
- double x2;
- } PAIR;
- void printUsing() {
- printf("Using: testGoldenRatio [-h|-help]\n");
- printf("This calculates the value of the golden ratio.\n");
- }
- // 이차방정식 a x^2 + b x + c = 0 의 근을 구한다.
- PAIR *findQuadraticRoot(double a, double b, double c) {
- static PAIR zeros;
- if (a == 0.0) {
- fprintf(stderr, "Since the highest coefficient is zero, the given equation is not a quadratic equation.\n");
- exit(1);
- }
- else if (b*b - 4*a*c < 0.0) {
- fprintf(stderr, "Since the discriminant %f is negative, the given equation has no real root.\b", b*b - 4*a*c);
- exit(1);
- }
- zeros.x1 = (-b + sqrt(b*b - 4*a*c)) / (2.0 * a);
- zeros.x2 = (-b - sqrt(b*b - 4*a*c)) / (2.0 * a);
- return (PAIR *) &zeros;
- }
- void main(int argc, char *argv[]) {
- double x1, x2;
- PAIR *values = (PAIR *) findQuadraticRoot(1.0, -1.0, -1.0);
- if (argc > 1 && (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "-help") == 0)) {
printUsing(); - exit(1);
- }
- values = findQuadraticRoot(1.0, -1.0, -1.0);
- x1 = values->x1;
- x2 = values->x2;
- if (x1 >= x2) {
- printf("The bigger root is %lf, \n", x1);
- printf("and the less root is %lf.\n", x2);
- }
- else {
- printf("The bigger root is %lf, \n", x2);
- printf("and the less root is %lf.\n", x1);
- }
- }
컴파일> cl testGoldenRatio.c
실행> testGoldenRatio
The bigger root is 1.618034,
and the less root is -0.618034.
Ch를 이용하면 C 언어 소스 코드를 (컴파일하지 않고) 직접 실행시킬 수 있다.
실행> ch testGoldenRatio.c
The bigger root is 1.618034,
and the less root is -0.618034.
'프로그래밍 > C' 카테고리의 다른 글
진법(radix) 표 만들기 예제 with C and Ch (0) | 2008.03.29 |
---|---|
대화형 모드의 진법(radix) 변환 예제 with C and Ch (0) | 2008.03.28 |
현재 시각 알아내기 for C and Ch (0) | 2008.03.24 |
GMP 사용 예제 for C (0) | 2008.03.19 |
조립제법(Horner의 방법) 예제 for C and Ch (0) | 2008.03.14 |