हम सी प्रोग्रामिंग भाषा में एक चर के रैखिक समीकरण को हल करने के लिए सॉफ्टवेयर विकास पद्धति को लागू कर सकते हैं।
आवश्यकता
- समीकरण ax+b=0 के रूप में होना चाहिए
- a और 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
कार्यक्रम
रैखिक समीकरण का हल खोजने के लिए सी प्रोग्राम निम्नलिखित है -
#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