Anonymous Anonymous Author
Title: GIẢI PHƯƠNG TRÌNH BẬC NHẤT
Author: Anonymous
Rating 5 of 5 Des:
Bài Giải #include <stdio.h> #include<conio.h> void main() { float a, b; printf("\nGiai phuong trinh bac nhat AX + ...

Bài Giải
#include <stdio.h>
#include<conio.h>
 
void main()
{
float a, b;
 
printf("\nGiai phuong trinh bac nhat AX + B = 0");
printf("\nCho biet ba he so A B : ");
scanf("%f%f", &a, &b);
 
if (a==0)
if (b!=0)
printf("Phuong trinh vo nghiem");
else
printf("Phuong trinh co nghiem khong xac dinh");
else
printf("Dap so cua phuong trinh tren = %f", -b/a);
getch();
}

About Author

Advertisement

Post a Comment

 
Top