#include<stdio.h>
#include<conio.h>
void main()
{
float a,b,c,x;
printf("Enter the value of a & b & c:\n");
scanf("%f%f%f",&a,&b,&c);
x=a/(b-c);
printf("x=%f",x);
getch();
}
#include<conio.h>
void main()
{
float a,b,c,x;
printf("Enter the value of a & b & c:\n");
scanf("%f%f%f",&a,&b,&c);
x=a/(b-c);
printf("x=%f",x);
getch();
}
No comments:
Post a Comment