Enter 3 integers abc and find the solution of a x x b x c 0 How to program it

Updated on educate 2024-04-13
12 answers
  1. Anonymous users2024-02-07

    #include

    #include

    using namespace std;

    int main()

    float a = 1,b = 0, c= 0;

    cout<<"a:";

    cin>>a;

    cout<<"b:";

    cin>>b;

    cout<<"c:";

    cin>>c;

    if(a==0)

    return 0;

    float x1,x2 = 0;

    float i;

    i = b*b-4*a*c;

    if(i<0)

    cout<<"There is no real root in the equation! "<0)

    x1 = (-b+sqrt(i))/(2*a);

    x2 = (-b-sqrt(i))/(2*a);

    cout<<"The equation has two unequal real roots:"<>a;

    cout<<"b:";

    cin>>b;

    cout<<"c:";

    cin>>c;

    Enter a value for b c.

    Isn't the control structure the if statement here?

    Take a closer look and understand it.

  2. Anonymous users2024-02-06

    This question is a must-have example or exercise in a C language book, hehe.

  3. Anonymous users2024-02-05

    buddyand23 can write it.

    The one on the first floor is commonly used, and both solutions are explained in the book.

  4. Anonymous users2024-02-04

    The equation that requires an integer solution is: (a+b) c + a+c) b + b+c) a = 4

    a^2b + ab^2 + a^2c + ac^2 + b^2c + bc^2) /abc) =4

    The molecule is carried out to obtain:

    a^2b + ab^2 + a^2c + ac^2 + b^2c + bc^2 = 4abc

    a^2(b+c) +b^2(a+c) +c^2(a+b) =4abc

    Now let's try to find integer solutions. Since every variable in the equation is symmetrical, we can assume a b c.

    When a = 1, the equation becomes:

    b+c) +b^2 + c^2 = 4bc

    We can try different combinations of b and c to verify that the equation is full. By trying, we found that the equation holds when b = 2 and c = 3.

    So, the integer solution is a = 1, b = 2, c = 3.

  5. Anonymous users2024-02-03

    Proceed with the equation and get:

    a+b)/c+(a+c)/b+(b+c)/a = a^2+ab+ac+bc+ab+bc+ac+bc+ac+ab)/abc

    2a^2+2b^2+2c^2+3ab+3ac+3bc)/abc

    Since the left side of the equation is an integer, the right side of the equation must also be an integer.

    Let 2a 2+2b 2+2c 2+3ab+3ac+3bc = kabc, where k is an integer.

    2a^2+2b^2+2c^2+3ab+3ac+3bc - kabc = 0

    Since the formal left side of the equation is an integer, the right side of the equation must also be an integer.

    Depending on the nature of the integer, it can be seen that the right side of the equation must be a multiple of the integer.

    Therefore, the KABC must be a multiple of 2a 2+2b 2+2c 2+3ab+3ac+3bc.

    Considering the form on the right side of the equation, we can guess the range of values of k.

    When k=1, the right side of the equation is an integer multiple of 2a 2+2b 2+2c 2+3ab+3ac+3bc.

    When k=2, the right side of the equation is an integer multiple of Lu Chong regret 4a 2+4b 2+4c 2+6ab+6ac+6bc.

    When k=3, the right side of the equation is an integer multiple of 6a 2 + 6b 2 + 6c 2 + 9ab + 9ac + 9bc.

    When k = 4, the right side of the equation is an integer multiple of 8a 2 + 8b 2 + 8c 2 + 12ab + 12ac + 12bc.

  6. Anonymous users2024-02-02

    Problem: (a+b) c+(a+c) b+(b+c) a=4 to find the integer solution.

    The equation is obtained: (a+b) c+(a+c) b+(b+c) a=4

    The solution is suspicious: ,

  7. Anonymous users2024-02-01

    Write a program and enter abc to find the value of ax + bx + c = 0.

  8. Anonymous users2024-01-31

    Should we also consider the case where a is sometimes 0?

  9. Anonymous users2024-01-30

    Find the root of the equation x 3 + ax 2 + bx + c = 0 using the string truncation method: (where x1 and x2 are required to be entered by the user are the intervals of the root estimated by the user).

    #include

    #include

    floata,b,c;

    Find the function value of f(x)=x3+ax 2+bx+c=0. */floatf(float

    x) *Find the abscissa of the intersection of the lines of (x1,f(x1)) and (x2,f(x2)) and the x-axis: x [x1 f(x2) x2 f(x1)].

    f(x2)-f(x1)]*

    floatxpoint(float

    x1,float

    x2) * Find the real root of the equation in the interval (x1, x2) * floatroot(float

    x1,float

    x2)while(fabs(f(x))>1e-4);

    return(x);

    main()

    while(f(x1)*f(x2)>=0);

    x=root(x1,x2);

    printf("a

    rootof

    equation

    is%.4f",x);

    For example, a, b, and c enter -5 respectively

    80, x1 and x2 are input 1 each

    10, the result is 5

  10. Anonymous users2024-01-29

    By the condition has: a+b+c=1

    16a-4b=45

    y'=3x^2+2ax+b

    No extremes. Rule.

    Discriminant formulas of derivatives.

    4a^2-12b<0

    Rule. 4(a-6)^2<9

    Namely. 3/2

  11. Anonymous users2024-01-28

    It is easy to know that a(x-a)(x-b)=0

    ax -a(a+b)x+aab=0, i.e. ax +bx+c=0 obviously a=a, -a =b(1+a).

    b=-a+1-1/a+1,x=1

    b za + 1 = 1 a = 0 (round) or a = -2

    When a=-2, b=4, c=16

    Therefore a+b+c=18

  12. Anonymous users2024-01-27

    Because ab=48, ac=96, =48 96, that is, b c=48 96, so b=48c 96, because bc=72, substituting gets, 48c 96=72, c=12, and then a=8, b=6, so abc=576

Related questions
2 answers2024-04-13

Summary. There are several common algorithms for determining whether a number is odd or even: divide by 2 and take the remainder: >>>More

10 answers2024-04-13

Find the common divisor like two numbers m and n

r=m%n; >>>More

15 answers2024-04-13

1, "Silk Play" singer: Yinlin, Aki Ajie.

"Silk Play" is an ancient style single written by Vagary and sung by Yinlin and Aki Ajie, which was launched in 2015. The song tells a story of love by depicting the companionship and parting between the puppet and the puppet who has been involved all his life. >>>More

8 answers2024-04-13

First of all, you should understand that the lineup is only used for rehearsals Now the stronger lineup will be targeted at the opposite side when BP is destroyed So the choice of the scene is the most important, how to counter the opposite lineup is the key, in the current new version of S6 The strongest top laner is Frize, Captain, Bobby, you can combine the lineup around these two points. For example, the top laner captain, the mid laner ez, the jungler Rexey, the adc Obama, and the auxiliary piano girl are a set of lineups that are more consuming, have a front row, support flexibility, and are not easy to target. Then there is the flexible use of the high explosion of the current jungler gun, you can organize a lineup, the top single Lisandro, the middle single Ruiz, the jungler gun, ADC good luck, and the auxiliary hammer stone. >>>More

4 answers2024-04-13

A: Today we are going to perform bai; du

B: Call me four out of the show; >>>More