Announcement

Collapse
No announcement yet.

Infraction for 12520141: Sai box

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Infraction for 12520141: Sai box

    Post: em sai chổ nào vậy!!
    User: 12520141
    Infraction: Sai box
    Points: 1

    Administrative Note:
    Cái này post vào subbox Lập trình của "góc học tập"

    Message to User:
    Cái này post vào subbox Lập trình của "góc học tập" nhưng phải tạo lại topic khác cho đúng quy tắc

    Original Post:
    #include "stdafx.h"
    #include "conio.h"
    #include "math.h"
    void giaipt(int &b, int &c)
    {
    if(b!=0) printf("phuong trinh co ngiem x= %f",float (-c/b) );
    else if(c!=0) printf("phuong trinh vo nghiem");
    else printf("phuong trinh co vo so nghiem");
    }
    void giaiptbac2 (int &a, int &b, int &c)
    {
    float x1,x2,delta;
    if (a==0) giaipt(b,c);
    else
    {
    delta= b*b-4*a*c;
    if (delta<0) printf("phuong trinh vo nghiem");
    else if (delta=0) printf("phuong trinh co nghiem la %f ",(-b/(2*a)));
    else
    {
    x1=(-b+sqrt(delta))/(2*a);
    x2=(-b-sqrt(delta))/(2*a);
    printf("phuong trinh co 2 nghiem la x1=%f , x2=%f",x1,x2);
    }
    }
    }
    void main()
    {
    int a,b,c;

    printf("nhap a,b,c");
    scanf_s("%d%d%d",&a,&b,&c);
    giaiptbac2(a,b,c);
    }
    mong may anh chị giúp dùm

LHQC

Collapse
Working...
X