// cbai20.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <stdio.h>
#include <conio.h>
void giaiptb1(float a, float b)
{
if (a!=0) printf("\nPhuong trinh co mot nghiem: x = %5.2f",-b/a);
else if (b==0) printf("\nPhuong trinh co vo so nghiem");
else printf("\nPhuong trinh vo nghiem.");
}
int _tmain(int argc, _TCHAR* argv[])
{
float a,b;
printf("\nNhap a,b : ");
scanf("%f%f",&a,&b);
giaiptb1(a,b);
getch();
return 0;
}
No comments:
Post a Comment