C 프로그래밍 언어에서 한 변수의 선형 방정식을 풀기 위해 소프트웨어 개발 방법을 적용할 수 있습니다.
요구사항
- 방정식은 ax+b=0 형식이어야 합니다.
- 와 b는 입력이므로 x의 값을 찾아야 합니다.
분석
여기,
- 입력 a,b 값입니다. .
- 출력 x 값입니다. .
알고리즘
선형 방정식의 해를 구하려면 아래의 알고리즘을 참조하십시오.
Step 1. Start Step 2. Read a,b values Step 3. Call function Jump to step 5 Step 4. Print result Step 5:
- i. if(a == 0)
- Print value of c cannot be predicted
- Else
- Compute c=-b/a
- Return c
프로그램
다음은 선형 방정식의 해를 구하는 C 프로그램입니다 -
#include <stdio.h> #include <string.h> float solve(float a, float b){ float c; if(a == 0){ printf("value of c cannot be predicted\n"); }else{ c = -b / a; } return c; } int main(){ float a, b, c; printf("\n enter a,b values: "); scanf("%f%f", &a, &b); c = solve(a, b); printf("\n linear eq of one variable in the form of ax+b = 0, if a=%f,b=%f,then x= %f",a,b,c); return 0; }
출력
위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -
enter a,b values: 4 8 linear eq of one variable in the form of ax+b = 0, if a=4.000000, b=8.000000, then x= -2.000000